Skip to content

Commit

Permalink
Fixed fix being to wrong file
Browse files Browse the repository at this point in the history
  • Loading branch information
mrwonko committed Mar 9, 2014
1 parent f53f9c4 commit cd61456
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 0 additions & 7 deletions code/game/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ if(WIN32)
set(SPGameLibraries "winmm")
endif(WIN32)

# game/G_Timer.cpp needs <unordered_map> from C++11
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "CLANG")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")

set(SPGameGameFiles
"${SPDir}/game/AI_Animal.cpp"
"${SPDir}/game/AI_AssassinDroid.cpp"
Expand Down
7 changes: 7 additions & 0 deletions codeJK2/game/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ if(WIN32)
set(JK2SPGameLibraries "winmm")
endif(WIN32)

# game/G_Timer.cpp needs <unordered_map> from C++11
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "CLANG")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")

set(JK2SPGameFiles
"${JK2SPDir}/game/AI_Atst.cpp"
"${JK2SPDir}/game/AI_Default.cpp"
Expand Down

0 comments on commit cd61456

Please sign in to comment.