File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ script:
30
30
# Run a simple test to validate that the build works; CPU device in a VM
31
31
- cd package/bin
32
32
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/bin/clBLAS/package/lib64:${LD_LIBRARY_PATH}
33
- - ./client --cpu
33
+ - ./clBLAS- client --cpu
34
34
35
35
after_success :
36
36
- cd ${TRAVIS_BUILD_DIR}/bin/clBLAS
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ include_directories(
52
52
53
53
add_executable (client ${CLIENT_SRC} ${CLIENT_HEADER} )
54
54
target_link_libraries (client ${Boost_LIBRARIES} ${OPENCL_LIBRARIES} clBLAS )
55
- set_target_properties ( client PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR} /staging" )
55
+ set_target_properties ( client PROPERTIES
56
+ RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR} /staging"
57
+ OUTPUT_NAME clBLAS-client )
56
58
57
59
add_executable (testPerfWrapper ${WRAPPER_SRC} )
58
60
target_link_libraries (testPerfWrapper ${Boost_LIBRARIES} )
Original file line number Diff line number Diff line change @@ -138,7 +138,9 @@ endif()
138
138
add_executable (tune ${TOOLS_SRC} ${TOOLS_EXTERNAL_SRC} )
139
139
add_dependencies (tune GENERATE_CLT )
140
140
target_link_libraries (tune ${OPENCL_LIBRARIES} ${TIME_LIBRARY} ${MATH_LIBRARY} )
141
- set_target_properties ( tune PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR} /staging" )
141
+ set_target_properties ( tune PROPERTIES
142
+ RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR} /staging"
143
+ OUTPUT_NAME clBLAS-tune )
142
144
143
145
# CPack configuration; include the executable into the package
144
146
install ( TARGETS tune
You can’t perform that action at this time.
0 commit comments