Move adding definition to other definitions
This commit is contained in:
parent
c124f5f371
commit
bd49fa4fd8
@ -196,11 +196,6 @@ if(UNIX AND NOT APPLE)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Netwowk Multiplayer
|
|
||||||
if(ENABLE_NETWORK_MULTIPLAYER)
|
|
||||||
add_definitions(-DENABLE_NETWORK_MULTIPLAYER_SCREEN)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Set some compiler options
|
# Set some compiler options
|
||||||
if(UNIX OR MINGW)
|
if(UNIX OR MINGW)
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x")
|
||||||
@ -211,6 +206,11 @@ if(MINGW AND CMAKE_BUILD_TYPE MATCHES Release)
|
|||||||
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--subsystem,windows")
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--subsystem,windows")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Netwowk Multiplayer
|
||||||
|
if(ENABLE_NETWORK_MULTIPLAYER)
|
||||||
|
add_definitions(-DENABLE_NETWORK_MULTIPLAYER_SCREEN)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
# By default windows.h has macros defined for min and max that screw up everything
|
# By default windows.h has macros defined for min and max that screw up everything
|
||||||
add_definitions(-DNOMINMAX)
|
add_definitions(-DNOMINMAX)
|
||||||
|
Loading…
Reference in New Issue
Block a user