Missed these CMakeLists.
This commit is contained in:
parent
e2718418bb
commit
0e0c9d8248
@ -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:
|
||||||
|
@ -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})
|
||||||
|
@ -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})
|
||||||
|
@ -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})
|
||||||
|
@ -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)
|
||||||
|
@ -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})
|
||||||
|
@ -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})
|
||||||
|
Loading…
Reference in New Issue
Block a user