source: Revenant/yamlprovider/CMakeLists.txt@ 7ef8ec4

port/mars-tycoon
Last change on this file since 7ef8ec4 was 80a6a52, checked in by Jonathan Neufeld <support@…>, 3 years ago

Get to a compile state for terrain procedural generation

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