1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Sat, 27 May 2023 14:30:19 +0200
Subject: Add override for SOVERSION AND OUTPUT_NAME
Forwarded: not-needed
---
src/stdgpu/CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/stdgpu/CMakeLists.txt b/src/stdgpu/CMakeLists.txt
index cdd8705..25cc379 100644
--- a/src/stdgpu/CMakeLists.txt
+++ b/src/stdgpu/CMakeLists.txt
@@ -141,6 +141,7 @@ endif()
add_library(stdgpu::stdgpu ALIAS stdgpu)
+set_target_properties(stdgpu PROPERTIES VERSION "${PROJECT_VERSION}" SOVERSION "${STDGPU_SOVERSION}" OUTPUT_NAME "${STDGPU_OUTPUT_NAME}")
add_subdirectory(${STDGPU_BACKEND_DIRECTORY})
|