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