Skip to content

Commit 016fda4

Browse files
committed
CMake: allow skipping include of settings.cmake
Signed-off-by: Axel Heider <axelheider@gmx.de>
1 parent 944f3d0 commit 016fda4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66

77
cmake_minimum_required(VERSION 3.7.2)
88

9-
include(settings.cmake)
9+
if(NOT SEL4TEST_DONT_USE_SEL4_DEFAULT_BUILD_SYSTEM)
10+
# include the settings from the standard sel4 build system
11+
include(settings.cmake)
12+
endif()
1013

1114
project(sel4test C CXX ASM)
1215

0 commit comments

Comments
 (0)