diff options
Diffstat (limited to 'lib/luaexpat')
-rw-r--r-- | lib/luaexpat/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/luaexpat/CMakeLists.txt b/lib/luaexpat/CMakeLists.txt new file mode 100644 index 000000000..7eef5c8ce --- /dev/null +++ b/lib/luaexpat/CMakeLists.txt @@ -0,0 +1,14 @@ + +cmake_minimum_required (VERSION 2.6) +project (luaexpat) + +include_directories ("${PROJECT_SOURCE_DIR}/../../src/") +include_directories ("${PROJECT_SOURCE_DIR}/../") + +file(GLOB SOURCE + "*.c" +) + +add_library(luaexpat ${SOURCE}) + +target_link_libraries(luaexpat expat) |