summaryrefslogtreecommitdiff
path: root/3rdparty/libconfig
diff options
context:
space:
mode:
authorgepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-03-02 19:57:29 +0000
committergepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-03-02 19:57:29 +0000
commite27e10c71f915a69f83bf81b5d0911375313f055 (patch)
tree6cbdc9b7c153ebce6ee38e00475cc30a91fee5e3 /3rdparty/libconfig
parent0e8da0a06a86128c2c2a9f663592e2a8e4980141 (diff)
downloadhercules-e27e10c71f915a69f83bf81b5d0911375313f055.tar.gz
hercules-e27e10c71f915a69f83bf81b5d0911375313f055.tar.bz2
hercules-e27e10c71f915a69f83bf81b5d0911375313f055.tar.xz
hercules-e27e10c71f915a69f83bf81b5d0911375313f055.zip
Updated CMakeLists (follow-up to r15572, r15586) (patch provided by Saithis, pid:82588).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15651 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to '3rdparty/libconfig')
-rw-r--r--3rdparty/libconfig/CMakeLists.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/3rdparty/libconfig/CMakeLists.txt b/3rdparty/libconfig/CMakeLists.txt
new file mode 100644
index 000000000..e98b46a5c
--- /dev/null
+++ b/3rdparty/libconfig/CMakeLists.txt
@@ -0,0 +1,26 @@
+
+find_path( LIBCONFIG_INCLUDE_DIRS "libconfig.h"
+ PATHS "${CMAKE_CURRENT_SOURCE_DIR}"
+ NO_DEFAULT_PATH )
+find_path( LIBCONFIG_SOURCE_DIR "libconfig.c"
+ PATHS "${CMAKE_CURRENT_SOURCE_DIR}"
+ NO_DEFAULT_PATH )
+mark_as_advanced( LIBCONFIG_INCLUDE_DIRS )
+mark_as_advanced( LIBCONFIG_SOURCE_DIR )
+
+set( LIBCONFIG_HEADERS
+ "${CMAKE_CURRENT_SOURCE_DIR}/grammar.h"
+ "${CMAKE_CURRENT_SOURCE_DIR}/libconfig.h"
+ "${CMAKE_CURRENT_SOURCE_DIR}/parsectx.h"
+ "${CMAKE_CURRENT_SOURCE_DIR}/scanctx.h"
+ "${CMAKE_CURRENT_SOURCE_DIR}/scanner.h"
+ "${CMAKE_CURRENT_SOURCE_DIR}/strbuf.h"
+ "${CMAKE_CURRENT_SOURCE_DIR}/wincompat.h"
+ CACHE INTERNAL "libconfig headers" )
+set( LIBCONFIG_SOURCES
+ "${CMAKE_CURRENT_SOURCE_DIR}/grammar.c"
+ "${CMAKE_CURRENT_SOURCE_DIR}/libconfig.c"
+ "${CMAKE_CURRENT_SOURCE_DIR}/scanctx.c"
+ "${CMAKE_CURRENT_SOURCE_DIR}/scanner.c"
+ "${CMAKE_CURRENT_SOURCE_DIR}/strbuf.c"
+ CACHE INTERNAL "libconfig sources" ) \ No newline at end of file