Skip to content

Commit f8af95c

Browse files
author
Timmy
committed
Merge pull request #74 from marbre/develop
Install scripts/perf to share/clBLAS on non WIN32 systems
2 parents 9edf929 + d8419d8 commit f8af95c

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)