File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.16.3 )
2
- project (hipcc )
2
+ project (hipcc.bin )
3
3
4
4
# specify the C++ standard
5
5
set (CMAKE_CXX_STANDARD 17 )
6
6
set (CMAKE_CXX_STANDARD_REQUIRED True )
7
7
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
12
12
endif ()
13
13
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
18
18
endif ()
19
19
20
20
set (HIP_VERSION_MAJOR 4 PARENT_SCOPE )
You can’t perform that action at this time.
0 commit comments