aboutsummaryrefslogtreecommitdiff
path: root/externals/zlib/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'externals/zlib/CMakeLists.txt')
-rw-r--r--externals/zlib/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/externals/zlib/CMakeLists.txt b/externals/zlib/CMakeLists.txt
new file mode 100644
index 00000000000..1887110020c
--- /dev/null
+++ b/externals/zlib/CMakeLists.txt
@@ -0,0 +1,12 @@
+file(GLOB sources *.c)
+file(GLOB headers *.h)
+
+SET(zlib_STAT_SRCS
+ ${sources}
+ )
+
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ )
+
+add_library(zlib STATIC ${zlib_STAT_SRCS})