From 9570718df1f859bfd9b5a931c7de17752e29f253 Mon Sep 17 00:00:00 2001 From: Wodann Date: Mon, 27 May 2019 17:17:31 +0900 Subject: [PATCH] Add option to compile qwt as static library (ON by default) --- src/CMakeLists.txt | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 60f7e3c..c7339fe 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,3 +1,5 @@ +option(QWT_USE_STATIC_LIBS "Whether to compile qwt as a static library" ON) + #---------------------------------------------------------------- # Packages #---------------------------------------------------------------- @@ -219,14 +221,18 @@ set(qwt_sources #---------------------------------------------------------------- # Target #---------------------------------------------------------------- -add_library(qwt SHARED ${qwt_headers} ${qwt_sources}) +if(QWT_USE_STATIC_LIBS) + add_library(qwt STATIC ${qwt_headers} ${qwt_sources}) +else() + add_library(qwt SHARED ${qwt_headers} ${qwt_sources}) -target_compile_definitions(qwt - PUBLIC - $<$:QWT_DLL> - PRIVATE - $<$:QWT_MAKEDLL> -) + target_compile_definitions(qwt + PUBLIC + $<$:QWT_DLL> + PRIVATE + $<$:QWT_MAKEDLL> + ) +endif() target_include_directories(qwt PUBLIC