summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2022-12-27 21:59:37 -0800
committerGitHub <noreply@github.com>2022-12-27 21:59:37 -0800
commit67289e12c515b16ab9e74806a2f9ac508448561d (patch)
treebd3c86a541c430407ade194468de339df7c5c02c
parentf32f88866361c87579a3eceea2a694ce22b7ffa4 (diff)
parent348d48fec431a45777e8c7b5014990be426bd565 (diff)
downloadraptor-67289e12c515b16ab9e74806a2f9ac508448561d.tar.gz
Merge pull request #53 from trofi/shared-by-default
CMakeLists.txt: default to shared libraries by default (just like GNU configure)
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index abe02d76..8f9bcb5f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -170,7 +170,7 @@ ENDIF(LIBXML2_FOUND)
# (Note: The CMake GUI displays these in alphabetical order, regardless of
# the order we use here)
-SET(BUILD_SHARED_LIBS OFF CACHE BOOL
+SET(BUILD_SHARED_LIBS ON CACHE BOOL
"Build shared libraries instead of static ones.")
IF(BUILD_SHARED_LIBS)