Skip to content

Commit d8419d8

Browse files
committed
Install scripts/perf to share/clBLAS on non WIN32 systems
1 parent 47662a6 commit d8419d8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/scripts/perf/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,8 @@ set(GRAPHING_SCRIPTS measurePerformance.py
2121
performanceUtility.py
2222
)
2323

24-
install( FILES ${GRAPHING_SCRIPTS} DESTINATION bin${SUFFIX_BIN} )
24+
if( WIN32 )
25+
install( FILES ${GRAPHING_SCRIPTS} DESTINATION bin${SUFFIX_BIN} )
26+
else ( )
27+
install( FILES ${GRAPHING_SCRIPTS} DESTINATION share/clBLAS )
28+
endif( )

0 commit comments

Comments
 (0)