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