1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Index: combblas/CMakeLists.txt
===================================================================
--- combblas.orig/CMakeLists.txt 2025-09-28 01:26:01.035361610 +0200
+++ combblas/CMakeLists.txt 2025-09-28 01:26:01.030227448 +0200
@@ -38,9 +38,11 @@
add_subdirectory(usort)
target_link_libraries(CombBLAS PUBLIC Usortlib)
+set_property(TARGET Usortlib PROPERTY VERSION "${CMAKE_PROJECT_NAME}_${CMAKE_PROJECT_VERSION}")
add_subdirectory(graph500-1.2/generator)
target_link_libraries(CombBLAS PUBLIC GraphGenlib)
+set_property(TARGET GraphGenlib PROPERTY VERSION "${CMAKE_PROJECT_NAME}_${CMAKE_PROJECT_VERSION}")
# Set up exported configuration
# This allows CombBLAS to be installed in two ways:
|