diff options
author | archshift <admin@archshift.com> | 2014-04-25 21:24:09 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-04-25 21:24:09 +0200 |
commit | 0e0c9d82483e01840faf7027fc01a998d5cf2f18 (patch) | |
tree | 06938fd9a0988f25feddf90848ee7f234ff4bdfd /lib | |
parent | Merge pull request #937 from archshift/xcode-headers (diff) | |
download | cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.tar cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.tar.gz cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.tar.bz2 cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.tar.lz cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.tar.xz cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.tar.zst cuberite-0e0c9d82483e01840faf7027fc01a998d5cf2f18.zip |
Diffstat (limited to '')
-rw-r--r-- | lib/expat/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lib/inifile/CMakeLists.txt | 8 | ||||
-rw-r--r-- | lib/luaexpat/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lib/md5/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lib/zlib/CMakeLists.txt | 1 |
5 files changed, 10 insertions, 2 deletions
diff --git a/lib/expat/CMakeLists.txt b/lib/expat/CMakeLists.txt index 667804b9a..540266377 100644 --- a/lib/expat/CMakeLists.txt +++ b/lib/expat/CMakeLists.txt @@ -4,6 +4,7 @@ project (expat) file(GLOB SOURCE "*.c" + "*.h" ) # add headers to MSVC project files: diff --git a/lib/inifile/CMakeLists.txt b/lib/inifile/CMakeLists.txt index efbd09796..321d501d7 100644 --- a/lib/inifile/CMakeLists.txt +++ b/lib/inifile/CMakeLists.txt @@ -1,7 +1,11 @@ - cmake_minimum_required (VERSION 2.6) project (iniFile) include_directories ("${PROJECT_SOURCE_DIR}/../../src/") -add_library(iniFile iniFile) +file(GLOB SOURCE + "*.h" + "*.cpp" +) + +add_library(iniFile ${SOURCE}) diff --git a/lib/luaexpat/CMakeLists.txt b/lib/luaexpat/CMakeLists.txt index 7eef5c8ce..f6b21c1d7 100644 --- a/lib/luaexpat/CMakeLists.txt +++ b/lib/luaexpat/CMakeLists.txt @@ -7,6 +7,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../") file(GLOB SOURCE "*.c" + "*.h" ) add_library(luaexpat ${SOURCE}) diff --git a/lib/md5/CMakeLists.txt b/lib/md5/CMakeLists.txt index 8ba09a0dd..cd9fe6320 100644 --- a/lib/md5/CMakeLists.txt +++ b/lib/md5/CMakeLists.txt @@ -6,6 +6,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../../src/") file(GLOB SOURCE "*.cpp" + "*.h" ) add_library(md5 ${SOURCE}) diff --git a/lib/zlib/CMakeLists.txt b/lib/zlib/CMakeLists.txt index 6c52578ee..74cf94f8b 100644 --- a/lib/zlib/CMakeLists.txt +++ b/lib/zlib/CMakeLists.txt @@ -6,6 +6,7 @@ include_directories ("${PROJECT_SOURCE_DIR}/../../src/") file(GLOB SOURCE "*.c" + "*.h" ) if(NOT TARGET zlib) |