Adjusting the install command

This change should hopefully make the GitHub Actions instance happy for CMake.
This commit is contained in:
dob205
2021-11-10 10:40:51 +01:00
committed by GitHub
parent 9f78c37f37
commit 99097d5555

View File

@@ -164,7 +164,11 @@ if(MINITRACE)
target_link_libraries(86Box minitrace)
endif()
install(TARGETS 86Box)
if(APPLE)
install(TARGETS 86Box DESTINATION "bin")
else()
install(TARGETS 86Box)
endif()
# adjustments for macOS app bundles