summaryrefslogtreecommitdiff
path: root/src/fs/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/CMakeLists.txt')
-rw-r--r--src/fs/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/fs/CMakeLists.txt b/src/fs/CMakeLists.txt
new file mode 100644
index 0000000..3ca33b8
--- /dev/null
+++ b/src/fs/CMakeLists.txt
@@ -0,0 +1,10 @@
+if(EXTFS_BUILD_STATIC)
+ set(LIBRARY_TYPE "STATIC")
+else()
+ set(LIBRARY_TYPE "SHARED")
+endif()
+
+add_library(extfs
+ ${LIBRARY_TYPE}
+ extfs.cpp
+ )