mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 04:31:38 +08:00
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
|
diff --git a/src/libbson/CMakeLists.txt b/src/libbson/CMakeLists.txt
|
||
|
index d6df66f..88de79a 100644
|
||
|
--- a/src/libbson/CMakeLists.txt
|
||
|
+++ b/src/libbson/CMakeLists.txt
|
||
|
@@ -209,6 +209,7 @@ set (HEADERS_FORWARDING
|
||
|
${PROJECT_SOURCE_DIR}/src/bson/forwarding/bson.h
|
||
|
)
|
||
|
|
||
|
+if(NOT MONGOC_ENABLE_STATIC_BUILD)
|
||
|
add_library (bson_shared SHARED ${SOURCES} ${HEADERS} ${HEADERS_FORWARDING})
|
||
|
set (CMAKE_CXX_VISIBILITY_PRESET hidden)
|
||
|
target_compile_definitions (bson_shared
|
||
|
@@ -275,6 +276,7 @@ if (WIN32)
|
||
|
# must be handled specially since we can't resolve them
|
||
|
set (BSON_SYSTEM_LIBRARIES ${BSON_SYSTEM_LIBRARIES} ws2_32)
|
||
|
endif ()
|
||
|
+endif()
|
||
|
|
||
|
if (MONGOC_ENABLE_STATIC_BUILD)
|
||
|
add_library (bson_static STATIC ${SOURCES} ${HEADERS} ${HEADERS_FORWARDING})
|
||
|
@@ -349,7 +351,7 @@ set (BSON_HEADER_INSTALL_DIR
|
||
|
)
|
||
|
|
||
|
if (MONGOC_ENABLE_STATIC_INSTALL)
|
||
|
- set (TARGETS_TO_INSTALL bson_shared bson_static)
|
||
|
+ set (TARGETS_TO_INSTALL bson_static)
|
||
|
else ()
|
||
|
set (TARGETS_TO_INSTALL bson_shared)
|
||
|
endif ()
|
||
|
@@ -400,12 +402,14 @@ configure_file (
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/src/libbson-1.0.pc
|
||
|
@ONLY)
|
||
|
|
||
|
+if(NOT MONGOC_ENABLE_STATIC_INSTALL)
|
||
|
install (
|
||
|
FILES
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/src/libbson-1.0.pc
|
||
|
DESTINATION
|
||
|
${CMAKE_INSTALL_LIBDIR}/pkgconfig
|
||
|
)
|
||
|
+endif()
|
||
|
|
||
|
if (MONGOC_ENABLE_STATIC_INSTALL)
|
||
|
configure_file (
|