|
From: <kin...@us...> - 2025-08-21 06:17:00
|
Revision: 7320
http://sourceforge.net/p/teem/code/7320
Author: kindlmann
Date: 2025-08-21 06:16:59 +0000 (Thu, 21 Aug 2025)
Log Message:
-----------
now installing of binary executables respects Teem_INSTALL_VERSIONED_SUBDIRS
Modified Paths:
--------------
teem/trunk/src/bin/CMakeLists.txt
Modified: teem/trunk/src/bin/CMakeLists.txt
===================================================================
--- teem/trunk/src/bin/CMakeLists.txt 2025-08-21 06:15:02 UTC (rev 7319)
+++ teem/trunk/src/bin/CMakeLists.txt 2025-08-21 06:16:59 UTC (rev 7320)
@@ -21,7 +21,7 @@
add_executable(${name} ${sources})
target_link_libraries(${name} teem)
install(TARGETS ${name}
- RUNTIME DESTINATION bin
+ RUNTIME DESTINATION ${BIN_INSTALL_DIR}
COMPONENT Runtime
)
set_target_properties(${name} PROPERTIES
@@ -41,7 +41,7 @@
CREATE_EXEC(puller puller.c)
CREATE_EXEC(tend tend.c)
-### For Teem v2, these were removed from compilation: they have no compelling
+### For TeemV2, these were removed from compilation: they have no compelling
### general purpose, for reasons indicated with further comments. No reason
### to delete the sources though; they can still be compiled by other means.
##
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|