name: "Big U"
panels {
name: "DECK"
path: "Panels/Room_1/deck"
clue: "deck"
answer: "card"
symbols: PLANET
}
panels {
name: "COLONY"
path: "Panels/Room_1/ant2"
clue: "colony"
answer: "ant"
symbols: PLANET
}
panels {
name: "MANOR"
path: "Panels/Room_1/manor"
clue: "manor"
answer: "mentor"
symbols: SPARKLES
symbols: PLANET
}
paintings {
name: "STOP3"
path: "Components/Paintings/QuickTravel/stop3"
}
paintings {
name: "GO3"
path: "Components/Paintings/QuickTravel/go3"
required_door { name: "Quick Travel 3" }
}
paintings {
name: "STOP1"
path: "Components/Paintings/QuickTravel/stop1"
}
paintings {
name: "GO1"
path: "Components/Paintings/QuickTravel/go1"
}
oup label='branches'>
blob: cc3fccd478960e95d547c72f4f703e9111e8d368 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
cmake_minimum_required (VERSION 3.1)
project (infinite)
add_subdirectory(vendor/libtwittercpp)
add_subdirectory(vendor/verbly)
find_package(PkgConfig)
pkg_check_modules(GraphicsMagick GraphicsMagick++ REQUIRED)
pkg_check_modules(yaml-cpp yaml-cpp REQUIRED)
include_directories(
${GraphicsMagick_INCLUDE_DIRS}
vendor/verbly/lib
vendor/libtwittercpp/src
${yaml-cpp_INCLUDE_DIRS})
link_directories(${GraphicsMagick_LIBRARY_DIRS})
add_executable(infinite infinite.cpp color.cpp fractal.cpp matrix3x3.cpp vector3d.cpp tinyxml2.cpp triangle.cpp)
set_property(TARGET infinite PROPERTY CXX_STANDARD 11)
set_property(TARGET infinite PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(infinite ${GraphicsMagick_LIBRARIES} verbly ${yaml-cpp_LIBRARIES} twitter++)
|