CMAKE: support for local cmake settings

master
Martin Gerhardy 2018-10-20 21:50:31 +02:00
parent 32c940bb2c
commit b09b2819df
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -3,10 +3,10 @@
/.project
/.cproject
/.settings
/Makefile.local
/typescript
gmon.out
/*.sync
/perf.data*
luac.out
*.patch
/CMakeLists.local

View File

@ -1,4 +1,5 @@
cmake_minimum_required(VERSION 3.1)
include(CMakeLists.local OPTIONAL)
set(ROOT_PROJECT_VERSION 0.0.1)
set(ROOT_PROJECT_NAME vengi)
project(${ROOT_PROJECT_NAME} VERSION ${ROOT_PROJECT_VERSION})