summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--blockdev/CMakeLists.txt8
-rw-r--r--src/CMakeLists.txt2
2 files changed, 8 insertions, 2 deletions
diff --git a/blockdev/CMakeLists.txt b/blockdev/CMakeLists.txt
index e79cbb4..e45f134 100644
--- a/blockdev/CMakeLists.txt
+++ b/blockdev/CMakeLists.txt
@@ -9,5 +9,11 @@ else()
endif()
aux_source_directory(. BLOCKDEV_SRC)
-add_library(blockdev SHARED ${BLOCKDEV_SRC})
+
+if(LWEXT4_BUILD_SHARED_LIB)
+ add_library(blockdev SHARED ${BLOCKDEV_SRC})
+else()
+ add_library(blockdev STATIC ${BLOCKDEV_SRC})
+endif()
+
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 3b82fcf..527664a 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -19,4 +19,4 @@ endif()
if (DEFINED INSTALL_LIB)
INSTALL(TARGETS lwext4 DESTINATION /usr/local/lib)
INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/include/. DESTINATION /usr/local/include/lwext4)
-endif() \ No newline at end of file
+endif()