aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlitecpp/portfile.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sqlitecpp/portfile.cmake')
-rw-r--r--ports/sqlitecpp/portfile.cmake8
1 files changed, 3 insertions, 5 deletions
diff --git a/ports/sqlitecpp/portfile.cmake b/ports/sqlitecpp/portfile.cmake
index a7e9a4267..6876bdf8c 100644
--- a/ports/sqlitecpp/portfile.cmake
+++ b/ports/sqlitecpp/portfile.cmake
@@ -1,4 +1,7 @@
include(vcpkg_common_functions)
+
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
vcpkg_from_github(OUT_SOURCE_PATH SOURCE_PATH
REPO "SRombauts/SQLiteCpp"
REF "2.2.0"
@@ -10,11 +13,6 @@ vcpkg_apply_patches(
PATCHES
${CMAKE_CURRENT_LIST_DIR}/0001-Find-external-sqlite3.patch)
-if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
- message(STATUS "Warning: Dynamic building not supported yet. Building static.")
- set(VCPKG_LIBRARY_LINKAGE static)
-endif()
-
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA