Merge pull request #593 from yegorich/static-libs

CMakeLists.txt: add an option to control shared library creation
pull/123/head
Marc Kleine-Budde 2025-03-12 09:27:14 +01:00 committed by GitHub
commit 7fb81e6779
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ endif()
# Add an option to enable treating warnings as errors # Add an option to enable treating warnings as errors
option(ENABLE_WERROR "Treat all compiler warnings as errors" OFF) option(ENABLE_WERROR "Treat all compiler warnings as errors" OFF)
option(ENABLE_GPS "Enable GPS support" OFF) option(ENABLE_GPS "Enable GPS support" OFF)
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
find_package(PkgConfig REQUIRED) find_package(PkgConfig REQUIRED)
if(ENABLE_GPS) if(ENABLE_GPS)
@ -129,7 +130,7 @@ if(NOT ANDROID)
PRIVATE can PRIVATE can
) )
add_library(isobusfs SHARED add_library(isobusfs
isobusfs/isobusfs_cmn.c isobusfs/isobusfs_cmn.c
isobusfs/isobusfs_cmn_dh.c isobusfs/isobusfs_cmn_dh.c
) )