Skip to content

Commit

Permalink
Fixes cmake-gui causing RUN_IN_PLACE to be always off
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaDucky authored and sfan5 committed Jun 13, 2013
1 parent 7a58c1d commit 40b2f36
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CMakeLists.txt
Expand Up @@ -28,6 +28,13 @@ else()
set(RUN_IN_PLACE 0 CACHE BOOL "Run directly in source directory structure")
endif()

# RUN_IN_PLACE is exported as a #define value, ensure it's 1/0 instead of ON/OFF
if(RUN_IN_PLACE)
set(RUN_IN_PLACE 1)
else()
set(RUN_IN_PLACE 0)
endif()

set(BUILD_CLIENT 1 CACHE BOOL "Build client")
if(WIN32)
set(BUILD_SERVER 0 CACHE BOOL "Build server")
Expand Down

0 comments on commit 40b2f36

Please sign in to comment.