xref: /reactos/sdk/cmake/config.cmake (revision b5218987)
1
2set(SARCH "pc" CACHE STRING
3"Sub-architecture to build for. Specify one of:
4 pc pc98 xbox")
5
6set(OARCH "pentium" CACHE STRING
7"Generate instructions for this CPU type. Specify one of:
8 pentium, pentiumpro")
9
10set(TUNE "i686" CACHE STRING
11"Which CPU ReactOS should be optimized for.")
12
13set(OPTIMIZE "4" CACHE STRING
14"What level of optimization to use.
15 0 = Off
16 1 = Optimize for size (-Os) with some additional options
17 2 = Optimize for size (-Os)
18 3 = Optimize debugging experience (-Og)
19 4 = Optimize (-O1)
20 5 = Optimize even more (-O2)
21 6 = Optimize yet more (-O3)
22 7 = Disregard strict standards compliance (-Ofast)")
23
24set(LTCG FALSE CACHE BOOL
25"Whether to build with link-time code generation")
26
27set(GDB FALSE CACHE BOOL
28"Whether to compile for debugging with GDB.
29If you don't use GDB, don't enable this.")
30
31if(CMAKE_BUILD_TYPE STREQUAL "Release")
32    set(DBG FALSE CACHE BOOL
33"Whether to compile for debugging.")
34else()
35    set(DBG TRUE CACHE BOOL
36"Whether to compile for debugging.")
37endif()
38
39if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
40    set(GCC TRUE CACHE BOOL "The compiler is GCC")
41    set(CLANG FALSE CACHE BOOL "The compiler is LLVM Clang")
42elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang")
43    set(GCC FALSE CACHE BOOL "The compiler is GCC")
44    set(CLANG TRUE CACHE BOOL "The compiler is LLVM Clang")
45elseif(MSVC) # aka CMAKE_C_COMPILER_ID STEQUAL "MSVC"
46    set(GCC FALSE CACHE BOOL "The compiler is GCC")
47    set(CLANG FALSE CACHE BOOL "The compiler is LLVM Clang")
48    # MSVC variable is already set by cmake
49else()
50    message("WARNING: the compiler has not been recognized")
51endif()
52
53if(MSVC AND (NOT USE_CLANG_CL))
54    set(KDBG FALSE CACHE BOOL
55"Whether to compile in the integrated kernel debugger.")
56    if(CMAKE_BUILD_TYPE STREQUAL "Release")
57        set(_WINKD_ FALSE CACHE BOOL "Whether to compile with the KD protocol.")
58    else()
59        set(_WINKD_ TRUE CACHE BOOL "Whether to compile with the KD protocol.")
60    endif()
61
62else()
63    if(CMAKE_BUILD_TYPE STREQUAL "Release")
64        set(KDBG FALSE CACHE BOOL "Whether to compile in the integrated kernel debugger.")
65    else()
66        set(KDBG TRUE CACHE BOOL "Whether to compile in the integrated kernel debugger.")
67    endif()
68    set(_WINKD_ FALSE CACHE BOOL "Whether to compile with the KD protocol.")
69endif()
70
71set(_ELF_ FALSE CACHE BOOL
72"Whether to compile support for ELF files.
73Do not enable unless you know what you're doing.")
74
75set(BUILD_MP TRUE CACHE BOOL
76"Whether to build the multiprocessor versions of NTOSKRNL and HAL.")
77
78set(GENERATE_DEPENDENCY_GRAPH FALSE CACHE BOOL
79"Whether to create a GraphML dependency graph of DLLs.")
80
81if(MSVC)
82set(_PREFAST_ FALSE CACHE BOOL
83"Whether to enable PREFAST while compiling.")
84set(_VS_ANALYZE_ FALSE CACHE BOOL
85"Whether to enable static analysis while compiling.")
86
87    option(RUNTIME_CHECKS "Whether to enable runtime checks on MSVC" ON)
88endif()
89
90if(GCC)
91    option(STACK_PROTECTOR "Whether to enable the GCC stack checker while compiling" OFF)
92endif()
93
94set(USE_DUMMY_PSEH FALSE CACHE BOOL
95"Whether to disable PSEH support.")
96