Skip to content

Commit

Permalink
cmake: fix set_property(OUTPUT_NAME) in src/bin
Browse files Browse the repository at this point in the history
  • Loading branch information
m6w6 committed Feb 28, 2023
1 parent 57002f3 commit 4a434c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_subdirectory(common)

foreach(CLIENT IN LISTS CLIENTS)
add_executable(${CLIENT} mem${CLIENT}.cc)
set_property(TARGET ${CLIENT} OUTPUT_NAME ${CLIENT_PREFIX}${CLIENT} PROPERTY CXX_STANDARD ${CXX_STANDARD})
set_property(TARGET ${CLIENT} PROPERTY CXX_STANDARD ${CXX_STANDARD} OUTPUT_NAME ${CLIENT_PREFIX}${CLIENT})
target_include_directories(${CLIENT} PRIVATE ..)
target_link_libraries(${CLIENT} PRIVATE libclient_common)
if(CMAKE_INSTALL_RPATH)
Expand Down

0 comments on commit 4a434c5

Please sign in to comment.