port/mars-tycoon
Last change
on this file since aad5afa 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 | |
---|
1 | cmake_minimum_required(VERSION 3.5)
|
---|
2 |
|
---|
3 | project (yamlprovider)
|
---|
4 | set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
---|
5 |
|
---|
6 | file(GLOB sources "src/*.cpp")
|
---|
7 |
|
---|
8 | add_library(yamlprovider SHARED ${sources})
|
---|
9 | generate_export_header(yamlprovider)
|
---|
10 | target_link_libraries(yamlprovider INTERFACE yaml-cpp)
|
---|
11 | target_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.