Skip to content

Commit 507c074

Browse files
authored
Merge pull request #8 from ROCm-Developer-Tools/msearles/binaryName
Change binary names to hipcc.bin, hipconfig.bin
2 parents d568a96 + e52a225 commit 507c074

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

amd/hipcc/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
cmake_minimum_required(VERSION 3.16.3)
2-
project (hipcc)
2+
project (hipcc.bin)
33

44
# specify the C++ standard
55
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_CXX_STANDARD_REQUIRED True)
77

8-
set ( LINK_LIBS libstdc++fs.so)
9-
add_executable(hipcc src/hipBin.cpp)
10-
if (NOT WIN32) #c++17 does not require the std lib linking
11-
target_link_libraries(hipcc ${LINK_LIBS} ) # for hipcc
8+
set (LINK_LIBS libstdc++fs.so)
9+
add_executable(hipcc.bin src/hipBin.cpp)
10+
if (NOT WIN32) # c++17 does not require the std lib linking
11+
target_link_libraries(hipcc.bin ${LINK_LIBS} ) # for hipcc.bin
1212
endif()
1313

14-
project (hipconfig)
15-
add_executable(hipconfig src/hipBin.cpp)
16-
if (NOT WIN32) #c++17 does not require the std lib linking
17-
target_link_libraries(hipconfig ${LINK_LIBS} ) # for hipconfig
14+
project (hipconfig.bin)
15+
add_executable(hipconfig.bin src/hipBin.cpp)
16+
if (NOT WIN32) # c++17 does not require the std lib linking
17+
target_link_libraries(hipconfig.bin ${LINK_LIBS} ) # for hipconfig.bin
1818
endif()
1919

2020
set(HIP_VERSION_MAJOR 4 PARENT_SCOPE)

0 commit comments

Comments
 (0)