Skip to content

Commit

Permalink
Remove qmake build for darwin.
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Wenzel <[email protected]>
  • Loading branch information
alexmucde committed Dec 11, 2024
1 parent 4f339fb commit 25e304f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
20 changes: 10 additions & 10 deletions scripts/darwin/build_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ rm -rf "${SRC_DIR}/build"
mkdir -p "${BUILD_DIR}"
cd "${BUILD_DIR}"

if [[ $(uname -m) == 'arm64' ]]; then
Qt5_DIR="/opt/homebrew/opt/qt@5"
echo "Build with cmake $(uname -m) $Qt5_DIR"
qmake ../BuildDltViewer.pro
#if [[ $(uname -m) == 'arm64' ]]; then
# Qt5_DIR="/opt/homebrew/opt/qt@5"
# echo "Build with cmake $(uname -m) $Qt5_DIR"
# qmake ../BuildDltViewer.pro
# cmake ..
else
Qt5_DIR="/usr/local/opt/qt"
echo "Build with qmake $(uname -m) $Qt5_DIR"
qmake ../BuildDltViewer.pro
make
fi
#else
# Qt5_DIR="/usr/local/opt/qt"
# echo "Build with qmake $(uname -m) $Qt5_DIR"
# qmake ../BuildDltViewer.pro
# make
#fi

#make

Expand Down
4 changes: 0 additions & 4 deletions scripts/linux/buildUbuntu20.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ rm -rf "${SRC_DIR}/build"
mkdir -p "${BUILD_DIR}"
cd "${BUILD_DIR}"

#echo Build with QMake
#qmake ../BuildDltViewer.pro
#make -j ${NPROC}

echo Cleanup
rm -rf "${INSTALL_DIR}"
rm -rf "${SRC_DIR}/build"
Expand Down

0 comments on commit 25e304f

Please sign in to comment.