diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-24 21:16:59 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-24 21:16:59 +0200 |
| commit | a60ac6f3ba2ce4c48c05fc2f9ed76ccbbbb837cf (patch) | |
| tree | 51b13bf42083d5a66748cdd2cf8b0ae06ad01264 /blockdev/CMakeLists.txt | |
| parent | 2b600eafa7288c3bf483e35072abb385b18a22d7 (diff) | |
More.static-on-linux
Diffstat (limited to 'blockdev/CMakeLists.txt')
| -rw-r--r-- | blockdev/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 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() + |
