diff options
| author | 2023-02-03 19:03:44 +0000 | |
|---|---|---|
| committer | 2023-02-03 19:03:44 +0000 | |
| commit | 35415333201613112c18b076f72abbcafb3cf32f (patch) | |
| tree | 981ec0c7a91e6e5c837c21b963f4aa08f3ed98f7 /src/bin/cli/CMakeLists.txt | |
| parent | 5ff8276d95454acf3b1800c8b76198e251c6c202 (diff) | |
| download | OneRoll-35415333201613112c18b076f72abbcafb3cf32f.tar.gz OneRoll-35415333201613112c18b076f72abbcafb3cf32f.zip | |
Fix ci
Diffstat (limited to 'src/bin/cli/CMakeLists.txt')
| -rw-r--r-- | src/bin/cli/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/cli/CMakeLists.txt b/src/bin/cli/CMakeLists.txt index e1d2b4b..6e17c1e 100644 --- a/src/bin/cli/CMakeLists.txt +++ b/src/bin/cli/CMakeLists.txt @@ -61,12 +61,12 @@ ELSE() target_link_libraries(dice PUBLIC Qt6::Core Qt6::Gui Qt6::Svg PRIVATE diceparser_shared) ENDIF() -include(install_helper OPTIONAL RESULT_VARIABLE=installFound) +include(install_helper OPTIONAL RESULT_VARIABLE installFound) if(installFound STREQUAL "NOTFOUND") - install(TARGETS dice RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT diceComp) + install(TARGETS dice RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) else() set(CPACK_OUTPUT_CONFIG_FILE "${CMAKE_BINARY_DIR}/CPackConfigDice.cmake") - rinstallRT(dice "diceComp") + rinstallRT(dice diceComp) endif() |