From 1c456a7ad63e138d85e3dd94d53eb857e1207845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Thu, 22 Sep 2022 19:18:38 -0300 Subject: [PATCH] Fixes incorrect install of fluid in macOS Applications directory. This requires sudo permissions to do it, and breaks ExtenalProject_Add. --- fluid/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluid/CMakeLists.txt b/fluid/CMakeLists.txt index 443bdca1db..50983c1499 100644 --- a/fluid/CMakeLists.txt +++ b/fluid/CMakeLists.txt @@ -163,7 +163,7 @@ if (APPLE AND (NOT OPTION_APPLE_X11)) # ## set_target_properties (fluid PROPERTIES RESOURCE ${ICON_PATH}) # install fluid GUI and commandline tools - install (TARGETS fluid DESTINATION "/Applications") + #install (TARGETS fluid DESTINATION "/Applications") # install command line tool install (PROGRAMS $ DESTINATION ${FLTK_BINDIR})