source: Revenant/yamlprovider/CMakeLists.txt

port/mars-tycoon
Last change on this file 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
RevLine 
[80a6a52]1cmake_minimum_required(VERSION 3.5)
2
3project (yamlprovider)
[4962c49]4set(CMAKE_POSITION_INDEPENDENT_CODE ON)
[80a6a52]5
6file(GLOB sources "src/*.cpp")
7
[4962c49]8add_library(yamlprovider SHARED ${sources})
9generate_export_header(yamlprovider)
[80a6a52]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.