diff options
Diffstat (limited to 'vcpkg/ports/tinycbor')
| -rw-r--r-- | vcpkg/ports/tinycbor/CMakeLists.txt | 9 | ||||
| -rw-r--r-- | vcpkg/ports/tinycbor/portfile.cmake | 20 | ||||
| -rw-r--r-- | vcpkg/ports/tinycbor/vcpkg.json | 13 |
3 files changed, 42 insertions, 0 deletions
diff --git a/vcpkg/ports/tinycbor/CMakeLists.txt b/vcpkg/ports/tinycbor/CMakeLists.txt new file mode 100644 index 0000000..b902a7d --- /dev/null +++ b/vcpkg/ports/tinycbor/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.20)
+project(tinycbor C)
+
+file(GLOB sources src/cbor*.c)
+list(FILTER sources EXCLUDE REGEX "cbortojson.c$")
+add_library(tinycbor ${sources})
+
+install(TARGETS tinycbor)
+install(FILES src/cbor.h src/cborjson.h src/tinycbor-version.h DESTINATION include/tinycbor)
diff --git a/vcpkg/ports/tinycbor/portfile.cmake b/vcpkg/ports/tinycbor/portfile.cmake new file mode 100644 index 0000000..4a3ac12 --- /dev/null +++ b/vcpkg/ports/tinycbor/portfile.cmake @@ -0,0 +1,20 @@ +vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO intel/tinycbor
+ REF "v${VERSION}"
+ SHA512 7c7fff9c1e9a2f04a3bb0247b79723526685b2821df720d0211c8e86b1a516c955926b3668fa6dcdaaf6cb811aff238db39a9add1bc12a4d32f8a51741f3f2ce
+ HEAD_REF master
+)
+
+file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
+
+vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}")
+
+vcpkg_cmake_install()
+
+# Remove duplicated include headers
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/vcpkg/ports/tinycbor/vcpkg.json b/vcpkg/ports/tinycbor/vcpkg.json new file mode 100644 index 0000000..df38507 --- /dev/null +++ b/vcpkg/ports/tinycbor/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "tinycbor", + "version-semver": "0.6.1", + "description": "Concise Binary Object Representation (CBOR) Library", + "homepage": "https://github.com/intel/tinycbor", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |