about summary refs log tree commit diff stats
path: root/data/maps/the_door/rooms
diff options
context:
space:
mode:
Diffstat (limited to 'data/maps/the_door/rooms')
0 files changed, 0 insertions, 0 deletions
com> 2022-11-30 18:23:03 -0500 committer Star Rauchenberger <fefferburbia@gmail.com> 2022-11-30 18:23:03 -0500 Initial commit' href='/lingo/commit/CMakeLists.txt?id=907917c5c9ec43ea9a7d4c3ae07ab2d7e48acc29'>907917c
a419bf5 ^
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






                                             
                                   



                               
                     




                          
                     




                                                            
                                                                          
cmake_minimum_required (VERSION 3.1)
project (lingo)

set(CMAKE_BUILD_TYPE Debug)

find_package(PkgConfig)
pkg_check_modules(yaml-cpp yaml-cpp REQUIRED)
pkg_check_modules(dpp dpp REQUIRED)

add_subdirectory(vendor/verbly)

include_directories(
  ${dpp_INCLUDE_DIRS}
  vendor/verbly/lib
  ${yaml-cpp_INCLUDE_DIRS}
  vendor/json)

link_directories(
  ${dpp_LIBRARY_DIRS}
  ${yaml-cpp_LIBRARY_DIRS})

add_executable(lingo lingo.cpp)
set_property(TARGET lingo PROPERTY CXX_STANDARD 17)
set_property(TARGET lingo PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(lingo verbly ${dpp_LIBRARIES} ${yaml-cpp_LIBRARIES})