cmake_minimum_required (VERSION 3.1)
project (lingo_ap_tracker)
if (MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
set(CMAKE_WIN32_EXECUTABLE true)
endif(MSVC)
find_package(wxWidgets CONFIG REQUIRED)
find_package(OpenSSL REQUIRED)
find_package(yaml-cpp REQUIRED)
include_directories(
vendor/hkutil
vendor/apclientpp
vendor/asio/asio/include
vendor/nlohmann
vendor/valijson/include
vendor/websocketpp
vendor/wswrap/include
${yaml-cpp_INCLUDE_DIRS}
${OpenSSL_INCLUDE_DIRS}
)
find_path(SYSTEM_INCLUDE_DIR zlib.h)
include_directories(${SYSTEM_INCLUDE_DIR})
link_directories(${openssl_LIBRARY_DIRS})
add_executable(lingo_ap_tracker
"src/main.cpp"
"src/tracker_frame.cpp"
"src/tracker_panel.cpp"
"src/game_data.cpp"
"src/area_popup.cpp"
"src/ap_state.cpp"
"src/connection_dialog.cpp"
"src/eye_indicator.cpp"
"src/tracker_state.cpp"
"src/tracker_config.cpp"
"src/logger.cpp"
"src/achievements_pane.cpp"
)
set_property(TARGET lingo_ap_tracker PROPERTY CXX_STANDARD 20)
set_property(TARGET lingo_ap_tracker PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(lingo_ap_tracker PRIVATE OpenSSL::SSL OpenSSL::Crypto wx::core wx::base wx::net yaml-cpp)
blob: abb89c8f373ebd11a98f230f1417c9ef2ca78e57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
name: "Room"
display_name: "Room"
panels {
name: "HORN"
path: "Panels/entry_1"
clue: "horn"
answer: "thorn"
symbols: SPARKLES
}
panels {
name: "ION"
path: "Panels/entry_2"
clue: "ion"
answer: "iron"
symbols: SPARKLES
}
panels {
name: "TON"
path: "Panels/entry_3"
clue: "ton"
answer: "torn"
symbols: SPARKLES
}
panels {
name: "ROT"
path: "Panels/entry_4"
clue: "rot"
answer: "riot"
symbols: SPARKLES
}
panels {
name: "IT"
path: "Panels/entry_5"
clue: "it"
answer: "hit"
symbols: SPARKLES
}
panels {
name: "HIT"
path: "Panels/entry_6"
clue: "hit"
answer: "hint"
symbols: SPARKLES
}
panels {
name: "INTO"
path: "Panels/entry_7"
clue: "into"
answer: "intro"
symbols: SPARKLES
}
panels {
name: "NOR"
path: "Panels/entry_8"
clue: "nor"
answer: "north"
symbols: SPARKLES
}
ports {
name: "GREAT"
path: "Components/Warps/worldport"
orientation: "south"
}
|