From 99097d5555aa1d591300049658a879f39dd6ac0f Mon Sep 17 00:00:00 2001 From: dob205 Date: Wed, 10 Nov 2021 10:40:51 +0100 Subject: [PATCH] Adjusting the install command This change should hopefully make the GitHub Actions instance happy for CMake. --- src/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d09b4ed34..8d2ba286f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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