From 22b5baf0cbce647533a6bee29e4e703815caef8d Mon Sep 17 00:00:00 2001 From: bunty95 <146869867+bunty95@users.noreply.github.com> Date: Thu, 6 Jun 2024 13:35:03 -0400 Subject: [PATCH] @rpath/libqdlt.dylib fix for MacOS --- scripts/darwin/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/darwin/build.sh b/scripts/darwin/build.sh index d51aed16..b6d7d960 100755 --- a/scripts/darwin/build.sh +++ b/scripts/darwin/build.sh @@ -19,8 +19,8 @@ if [[ $(uname -m) == 'arm64' ]]; then else Qt5_DIR="/usr/local/opt/qt" echo "Build with qmake $(uname -m) $Qt5_DIR" - qmake ../BuildDltViewer.pro - make + #qmake ../BuildDltViewer.pro + #make fi #make @@ -40,7 +40,7 @@ cmake -G Ninja \ -DCMAKE_OSX_DEPLOYMENT_TARGET=12.7 \ -DCMAKE_BUILD_TYPE=Release \ -DDLT_USE_QT_RPATH=ON \ - -DDLT_PARSER=OFF \ + -DDLT_PARSER=ON \ -DDLT_APP_DIR_NAME=${APP_DIR_NAME} \ -DDLT_LIBRARY_INSTALLATION_PATH="${APP_DIR_NAME}/Contents/Frameworks" \ -DDLT_EXECUTABLE_INSTALLATION_PATH="${APP_DIR_NAME}/Contents/MacOS" \