source: Revenant/yamlprovider/CMakeLists.txt@ 25c4774

port/mars-tycoon
Last change on this file since 25c4774 was 4962c49, checked in by Jonathan Neufeld <support@…>, 3 years ago

Introduce CLI Terrain Generator utility

  • Property mode set to 100644
File size: 433 bytes
Line 
1cmake_minimum_required(VERSION 3.5)
2
3project (yamlprovider)
4set(CMAKE_POSITION_INDEPENDENT_CODE ON)
5
6file(GLOB sources "src/*.cpp")
7
8add_library(yamlprovider SHARED ${sources})
9generate_export_header(yamlprovider)
10target_link_libraries(yamlprovider INTERFACE yaml-cpp)
11target_include_directories(
12 yamlprovider PUBLIC ../third-party/yaml-cpp/include/yaml-cpp ../third-party/yaml-cpp/include PUBLIC include/ ../geoworld/include/
13)
Note: See TracBrowser for help on using the repository browser.