From 6103a293dca051335b1a80ffa046982cb793268f Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Mon, 11 Jun 2018 14:52:58 +0200 Subject: [PATCH] cmake fixed a destination bug on macOS. --- src/musredit_qt5/mupp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/musredit_qt5/mupp/CMakeLists.txt b/src/musredit_qt5/mupp/CMakeLists.txt index 935d019c..4630b907 100644 --- a/src/musredit_qt5/mupp/CMakeLists.txt +++ b/src/musredit_qt5/mupp/CMakeLists.txt @@ -82,7 +82,7 @@ endif (APPLE) #--- install ------------------------------------------------------------------ if (APPLE) - install(TARGETS mupp BUNDLE DESTINATION ${CMAKE_INSTALL_PREFIX}) + install(TARGETS mupp BUNDLE DESTINATION /Applications) else (APPLE) install(TARGETS mupp DESTINATION ${CMAKE_INSTALL_PREFIX}/bin) endif (APPLE)