From 7b215e83a3c29eb002a0d06dcbc76afbe86e55fd Mon Sep 17 00:00:00 2001 From: Benitoite Date: Sat, 15 Feb 2020 18:07:30 -0800 Subject: [PATCH] mac: bundle simplification --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 259a0d7a2..8503fe573 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -168,7 +168,7 @@ endif() if(NOT DEFINED DATADIR) if(BUILD_BUNDLE) if(APPLE) - set(DATADIR "../../Resources") + set(DATADIR "../Resources") else() set(DATADIR .) endif() @@ -180,7 +180,7 @@ endif() if(NOT DEFINED LIBDIR) if(BUILD_BUNDLE) if(APPLE) - set(LIBDIR "../../Frameworks") + set(LIBDIR "../Frameworks") else() set(LIBDIR .) endif()