aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authoreao197 <eao197@users.noreply.github.com>2021-02-18 23:59:36 +0300
committerGitHub <noreply@github.com>2021-02-18 12:59:36 -0800
commitaef2f37056fa9481f2783bf47d18f8705dbff19a (patch)
treec3622d5f7dbcf7cbb4c4e30594440d4daf97a2d5 /ports
parentd112d7cc067ee4b5459023450d26579577e7c2f3 (diff)
downloadvcpkg-aef2f37056fa9481f2783bf47d18f8705dbff19a.tar.gz
vcpkg-aef2f37056fa9481f2783bf47d18f8705dbff19a.zip
[sobjectizer] update to v.5.7.2.2 (#16230)
* SObjectizer updated to v.5.7.2.2. * Change the way of detecting static/dynamic libraries. * Command 'x-add-version sobjectizer' completed.
Diffstat (limited to 'ports')
-rw-r--r--ports/sobjectizer/portfile.cmake13
-rw-r--r--ports/sobjectizer/vcpkg.json2
2 files changed, 5 insertions, 10 deletions
diff --git a/ports/sobjectizer/portfile.cmake b/ports/sobjectizer/portfile.cmake
index 8ea1b0ecc..3bfe1b963 100644
--- a/ports/sobjectizer/portfile.cmake
+++ b/ports/sobjectizer/portfile.cmake
@@ -1,17 +1,12 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO stiffstream/sobjectizer
- REF 04ec6fcf63eb977e9f45348b7c05b0d98c8f0b60 # v.5.7.2.1
- SHA512 b2550d7bf7f3e405fccff02ae12fd2a235016c5c8bdcfc0bb1baf3a91f90369d68b2c57dbecbc990a8627338b7dcd6b3d32b681aaf0335dde0b2672003fe38ec
+ REF 73b0d1bf5b4bdf543c24bc4969d2c408e0cea812 # v.5.7.2.2
+ SHA512 f911900f67832be877ac1d906deb4fb03925601d91c7d9bb0dd1c789d71a5bddb8ec5e0fe361ad7cfa8787a70d09aee26b17e8dba55c0b5dc4fba2b31651442b
)
-if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
- set(SOBJECTIZER_BUILD_STATIC ON)
- set(SOBJECTIZER_BUILD_SHARED OFF)
-else()
- set(SOBJECTIZER_BUILD_STATIC OFF)
- set(SOBJECTIZER_BUILD_SHARED ON)
-endif()
+string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" SOBJECTIZER_BUILD_STATIC )
+string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" SOBJECTIZER_BUILD_SHARED)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}/dev
diff --git a/ports/sobjectizer/vcpkg.json b/ports/sobjectizer/vcpkg.json
index ab7b3369d..fb728af77 100644
--- a/ports/sobjectizer/vcpkg.json
+++ b/ports/sobjectizer/vcpkg.json
@@ -1,6 +1,6 @@
{
"name": "sobjectizer",
- "version-string": "5.7.2.1",
+ "version-string": "5.7.2.2",
"description": "SObjectizer is a C++ in-process message dispatching framework with implementation of Actor Model, Publish-Subscribe Model and CSP-like channels.",
"homepage": "https://github.com/Stiffstream/sobjectizer",
"license": "BSD-3-Clause"