source: Revenant/yamlprovider/CMakeLists.txt@ dd8f5b4

Last change on this file since dd8f5b4 was dd8f5b4, checked in by Jonathan Neufeld <support@…>, 4 years ago

(WIP) GD Native module

  • Property mode set to 100644
File size: 396 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})
9target_link_libraries(yamlprovider INTERFACE yaml-cpp)
10target_include_directories(
11 yamlprovider PUBLIC ../third-party/yaml-cpp/include/yaml-cpp ../third-party/yaml-cpp/include PUBLIC include/ ../geoworld/include/
12)
Note: See TracBrowser for help on using the repository browser.