Add cpp suffix to cpp binaries
This commit is contained in:
parent
bd9e6ff5b1
commit
25b4ac0d69
2 changed files with 8 additions and 8 deletions
|
@ -3,10 +3,10 @@ project(sht)
|
|||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
add_executable(vsleep vsleep.cpp)
|
||||
install(TARGETS vsleep
|
||||
add_executable(vsleep-cpp vsleep.cpp)
|
||||
install(TARGETS vsleep-cpp
|
||||
RUNTIME DESTINATION /usr/bin
|
||||
)
|
||||
|
||||
add_executable(pause pause.cpp)
|
||||
install(TARGETS pause RUNTIME DESTINATION /usr/bin)
|
||||
add_executable(pause-cpp pause.cpp)
|
||||
install(TARGETS pause-cpp RUNTIME DESTINATION /usr/bin)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue