aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/sqlite-orm/portfile.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/sqlite-orm/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/sqlite-orm/portfile.cmake')
-rw-r--r--vcpkg/ports/sqlite-orm/portfile.cmake34
1 files changed, 34 insertions, 0 deletions
diff --git a/vcpkg/ports/sqlite-orm/portfile.cmake b/vcpkg/ports/sqlite-orm/portfile.cmake
new file mode 100644
index 0000000..7d641fb
--- /dev/null
+++ b/vcpkg/ports/sqlite-orm/portfile.cmake
@@ -0,0 +1,34 @@
+# header-only library
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO fnc12/sqlite_orm
+ REF "v${VERSION}"
+ SHA512 3e939ddb31e8f03a5f885e459b1ba8040b58e697a715148b829b075d612d1c8a5686ec889155ec9804929e11ec11285a39af3f1eb27a4edf0bcc56c4ee7530b1
+ HEAD_REF master
+ PATCHES
+ fix-dependency.patch
+)
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ test BUILD_TESTING
+ example BUILD_EXAMPLES
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ ${FEATURE_OPTIONS}
+ -DSQLITE_ORM_ENABLE_CXX_17=OFF
+ -DSQLITE_ORM_ENABLE_CXX_20=OFF
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup(PACKAGE_NAME SqliteOrm CONFIG_PATH lib/cmake/SqliteOrm)
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
+
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file