1
0
Fork 0

fixed multiprocessing on windows and removed redundend compile of headers

This commit is contained in:
tycho 2013-12-19 23:37:24 +00:00
parent 0c027927c4
commit 44638cd24a
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,11 @@
cmake_minimum_required (VERSION 2.6)
project (MCServer)
if(WIN32)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP")
endif()
set(CMAKE_CXX_FLAGS_BAK ${CMAKE_CXX_FLAGS})
set(CMAKE_C_FLAGS_BAK ${CMAKE_C_FLAGS})
if (UNIX)

View File

@ -37,7 +37,6 @@ endforeach(folder)
file(GLOB_RECURSE SOURCE
"*.cpp"
"*.h"
)