source: Revenant/geoworld/CMakeLists.txt@ 8125274

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