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:
411 bytes
|
Line | |
---|
1 | cmake_minimum_required(VERSION 3.5)
|
---|
2 |
|
---|
3 | project (geoworld)
|
---|
4 |
|
---|
5 | file(GLOB sources "src/*.cpp" "src/gwmorphs/*.cpp")
|
---|
6 | file(GLOB includes "include/*.h" "include/gwmorphs/*.h")
|
---|
7 | add_library(geoworld SHARED ${sources} ${includes})
|
---|
8 | generate_export_header(geoworld)
|
---|
9 | target_link_libraries(geoworld PRIVATE marslib ${Boost_LIBRARIES})
|
---|
10 | target_include_directories(geoworld PUBLIC include include/gwmorphs/ ../third-party/lodepng)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.