summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax <max.maisel@posteo.de>2018-03-01 17:20:35 +0100
committerMax Maisel <max.maisel@posteo.de>2018-03-01 18:13:11 +0100
commitcc37917dfb7785b7a2deb375026cb476d1a60beb (patch)
tree37ca3e969f4336f8f1fe1953520b7f2a234a756a /src
parent2d9c5b5d776dcaa543b4a37f738617dfca64fff1 (diff)
CMake: Added option whether to build static or shared library
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 82d6a6b..3b82fcf 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,8 +1,14 @@
+option(LWEXT4_BUILD_SHARED_LIB "Build shared library" OFF)
+
#LIBRARY
include_directories(.)
aux_source_directory(. LWEXT4_SRC)
-add_library(lwext4 STATIC ${LWEXT4_SRC})
+if(LWEXT4_BUILD_SHARED_LIB)
+ add_library(lwext4 SHARED ${LWEXT4_SRC})
+else()
+ add_library(lwext4 STATIC ${LWEXT4_SRC})
+endif()
if (DEFINED SIZE)
add_custom_target(lib_size ALL DEPENDS lwext4 COMMAND ${SIZE} liblwext4.a)