Merge pull request #632 from sergiud/cmake-default-shared-libs

cmake: build shared libs by default
This commit is contained in:
Sergiu Deitsch 2021-04-02 01:45:30 +02:00 committed by GitHub
commit bf183f44f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ set (CPACK_PACKAGE_VERSION_MINOR ${PROJECT_VERSION_MINOR})
set (CPACK_PACKAGE_VERSION_PATCH ${PROJECT_VERSION_PATCH})
set (CPACK_PACKAGE_VERSION ${PROJECT_VERSION})
option (BUILD_SHARED_LIBS "Build shared libraries" OFF)
option (BUILD_SHARED_LIBS "Build shared libraries" ON)
option (PRINT_UNSYMBOLIZED_STACK_TRACES
"Print file offsets in traces instead of symbolizing" OFF)
option (WITH_GFLAGS "Use gflags" ON)