1
0

Merge pull request #938 from archshift/xcode-oops

Oops, forgot some CMakeLists in #937
This commit is contained in:
Mattes D 2014-04-25 23:38:45 +02:00
commit 20e0465fd1
7 changed files with 17 additions and 3 deletions

View File

@ -4,6 +4,7 @@ project (expat)
file(GLOB SOURCE file(GLOB SOURCE
"*.c" "*.c"
"*.h"
) )
# add headers to MSVC project files: # add headers to MSVC project files:

View File

@ -1,7 +1,11 @@
cmake_minimum_required (VERSION 2.6) cmake_minimum_required (VERSION 2.6)
project (iniFile) project (iniFile)
include_directories ("${PROJECT_SOURCE_DIR}/../../src/") include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
add_library(iniFile iniFile) file(GLOB SOURCE
"*.h"
"*.cpp"
)
add_library(iniFile ${SOURCE})

View File

@ -7,6 +7,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../")
file(GLOB SOURCE file(GLOB SOURCE
"*.c" "*.c"
"*.h"
) )
add_library(luaexpat ${SOURCE}) add_library(luaexpat ${SOURCE})

View File

@ -6,6 +6,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
file(GLOB SOURCE file(GLOB SOURCE
"*.cpp" "*.cpp"
"*.h"
) )
add_library(md5 ${SOURCE}) add_library(md5 ${SOURCE})

View File

@ -6,6 +6,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
file(GLOB SOURCE file(GLOB SOURCE
"*.c" "*.c"
"*.h"
) )
if(NOT TARGET zlib) if(NOT TARGET zlib)

View File

@ -6,6 +6,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../")
file(GLOB SOURCE file(GLOB SOURCE
"*.cpp" "*.cpp"
"*.h"
) )
add_library(Blocks ${SOURCE}) add_library(Blocks ${SOURCE})

View File

@ -4,4 +4,9 @@ project (MCServer)
include_directories ("${PROJECT_SOURCE_DIR}/../") include_directories ("${PROJECT_SOURCE_DIR}/../")
add_library(Items ItemHandler) file(GLOB SOURCE
"*.cpp"
"*.h"
)
add_library(Items ${SOURCE})