Last change
on this file since f40df48 was dd8f5b4, checked in by Jonathan Neufeld <support@…>, 4 years ago |
(WIP) GD Native module
|
-
Property mode
set to
100644
|
File size:
396 bytes
|
Rev | Line | |
---|
[71dea59] | 1 | cmake_minimum_required(VERSION 3.5)
|
---|
| 2 |
|
---|
| 3 | project (yamlprovider)
|
---|
[dd8f5b4] | 4 | set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
---|
[71dea59] | 5 |
|
---|
| 6 | file(GLOB sources "src/*.cpp")
|
---|
| 7 |
|
---|
[dd8f5b4] | 8 | add_library(yamlprovider SHARED ${sources})
|
---|
[71dea59] | 9 | target_link_libraries(yamlprovider INTERFACE yaml-cpp)
|
---|
| 10 | target_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.