forked from pool/aws-crt-cpp
* Fix assignment operator in Optional by @sfod in (#720) * Fix clang error in string view by @sbiscigl in (#728) - from version 0.32.2 * Revert checksums header install location change by @DmitriyMusatkin in (#726) - from version 0.31.2 * Fix flaky CBOR test by @graebm in (#718) * Use latest PQ TLS Cipher Preference in Tests by @alexw91 in (#717) * Fix "std-compat" CI to actually test what it's supposed to by @graebm in (#719) * Fix IP address being labelled "bad" for too long by @graebm in (#723) * Initialize checksums explicitly by @DmitriyMusatkin in (#722) OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-crt-cpp?expand=0&rev=85
14 lines
570 B
Diff
14 lines
570 B
Diff
diff -Nru aws-crt-cpp-0.31.0.orig/CMakeLists.txt aws-crt-cpp-0.31.0/CMakeLists.txt
|
|
--- aws-crt-cpp-0.31.0.orig/CMakeLists.txt 2025-02-25 21:44:05.000000000 +0000
|
|
+++ aws-crt-cpp-0.31.0/CMakeLists.txt 2025-02-27 12:14:32.348326331 +0000
|
|
@@ -311,6 +311,9 @@
|
|
endif()
|
|
endif()
|
|
|
|
+set_target_properties(${PROJECT_NAME} PROPERTIES VERSION 1.0.0)
|
|
+set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION 1)
|
|
+
|
|
target_include_directories(${PROJECT_NAME} PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<BUILD_INTERFACE:${GENERATED_INCLUDE_DIR}>
|