aboutsummaryrefslogtreecommitdiff
path: root/ports/status-code
diff options
context:
space:
mode:
Diffstat (limited to 'ports/status-code')
-rw-r--r--ports/status-code/CONTROL4
-rw-r--r--ports/status-code/portfile.cmake29
-rw-r--r--ports/status-code/usage4
3 files changed, 37 insertions, 0 deletions
diff --git a/ports/status-code/CONTROL b/ports/status-code/CONTROL
new file mode 100644
index 000000000..ac86283bd
--- /dev/null
+++ b/ports/status-code/CONTROL
@@ -0,0 +1,4 @@
+Source: status-code
+Version: 1.0.0-ab3cd821
+Homepage: https://github.com/ned14/status-code
+Description: Proposed SG14 status_code for the C++ standard (https://wg21.link/P1028).
diff --git a/ports/status-code/portfile.cmake b/ports/status-code/portfile.cmake
new file mode 100644
index 000000000..f369a3ba0
--- /dev/null
+++ b/ports/status-code/portfile.cmake
@@ -0,0 +1,29 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO ned14/status-code
+ REF ab3cd8217b6a89b91708a497f77f119c096fcce3
+ SHA512 266c79875fd6edb4a239768da29401193d5b710fe3d06208df010c5ca56bf80fa4558f572c738ab9290ee378437c882d072e93e8fb10fb1e3787b460f40a7102
+ HEAD_REF master
+)
+
+# Because status-code's deployed files are header-only, the debug build is not necessary
+set(VCPKG_BUILD_TYPE release)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH "${SOURCE_PATH}"
+ PREFER_NINJA
+ OPTIONS
+ -DPROJECT_IS_DEPENDENCY=On
+)
+
+vcpkg_install_cmake()
+
+vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/status-code)
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
+file(RENAME "${CURRENT_PACKAGES_DIR}/include" "${CURRENT_PACKAGES_DIR}/include2")
+file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/include")
+file(RENAME "${CURRENT_PACKAGES_DIR}/include2" "${CURRENT_PACKAGES_DIR}/include/status-code")
+
+file(INSTALL "${CURRENT_PORT_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
+file(INSTALL "${SOURCE_PATH}/Licence.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/ports/status-code/usage b/ports/status-code/usage
new file mode 100644
index 000000000..52d8cd77c
--- /dev/null
+++ b/ports/status-code/usage
@@ -0,0 +1,4 @@
+The package status-code provides CMake targets:
+
+ find_package(status-code CONFIG REQUIRED)
+ target_link_libraries(main PUBLIC status-code::hl)