Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmake/os.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ set(CMAKE_SKIP_RPATH ON)
set(BUILD_SHARED_LIBRARIES OFF)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static")

option(for_production "Stop the OS when conditions not suitable for production" ON)
if (for_production)
option(FOR_PRODUCTION "Stop the OS when conditions not suitable for production" ON)
if (FOR_PRODUCTION)
set(PROD_USE "--defsym __for_production_use=0x2000")
else()
set(PROD_USE "--defsym __for_production_use=0x1000")
Expand Down