Browse Source

Further discouragement of in-source builds

iss7
Trevor Irons 5 years ago
parent
commit
c77fa33f23
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      CMakeLists.txt

+ 4
- 0
CMakeLists.txt View File

@@ -1,5 +1,9 @@
1 1
 cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
2 2
 
3
+# add this options before PROJECT keyword
4
+set(CMAKE_DISABLE_SOURCE_CHANGES ON)
5
+set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
6
+
3 7
 # Bug in CMake on Linux, but Linux, Mac, and Win all support shared libraries, no harm in this, 
4 8
 # but remove when warning no longer shows.
5 9
 # Related to calling find_package before a project is created... 

Loading…
Cancel
Save