From 2cf15bc3471267247b89fe041b7d05a5c754f4ca Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Tue, 29 Mar 2022 11:13:09 +0200 Subject: [PATCH] fix standalone CI build --- standalone/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/standalone/CMakeLists.txt b/standalone/CMakeLists.txt index c7fb7d2..36b15db 100644 --- a/standalone/CMakeLists.txt +++ b/standalone/CMakeLists.txt @@ -24,4 +24,7 @@ file(GLOB sources CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/source/*.cpp) add_executable(${PROJECT_NAME} ${sources}) +# TODO(CK): why is this needed? +set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME Greeter) + target_link_libraries(${PROJECT_NAME} Greeter::Greeter cxxopts)