Last change
on this file since dd8f5b4 was 71dea59, checked in by Jonathan Neufeld <support@…>, 4 years ago |
Get to a compile state for terrain procedural generation
|
-
Property mode
set to
100644
|
File size:
284 bytes
|
Line | |
---|
1 | cmake_minimum_required(VERSION 3.5)
|
---|
2 |
|
---|
3 | project (marslib)
|
---|
4 |
|
---|
5 | file(GLOB sources "src/*.cpp")
|
---|
6 | file(GLOB includes "include/*.h")
|
---|
7 | add_library(marslib ${sources} ${includes})
|
---|
8 | set_property(TARGET marslib PROPERTY POSITION_INDEPENDENT_CODE ON)
|
---|
9 | target_include_directories(marslib PUBLIC include/)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.