source: Revenant/marslib/CMakeLists.txt@ 25c4774

port/mars-tycoon
Last change on this file since 25c4774 was 80a6a52, checked in by Jonathan Neufeld <support@…>, 3 years ago

Get to a compile state for terrain procedural generation

  • Property mode set to 100644
File size: 284 bytes
Line 
1cmake_minimum_required(VERSION 3.5)
2
3project (marslib)
4
5file(GLOB sources "src/*.cpp")
6file(GLOB includes "include/*.h")
7add_library(marslib ${sources} ${includes})
8set_property(TARGET marslib PROPERTY POSITION_INDEPENDENT_CODE ON)
9target_include_directories(marslib PUBLIC include/)
Note: See TracBrowser for help on using the repository browser.