https://hal.archives-ouvertes.fr/hal-02427428
Raw File
Tip revision: 71cea6b7054d14cabe643a38cd2b88a50ed09da1 authored by Software Heritage on 01 February 2019, 00:00:00 UTC
hal: Deposit 358 in collection hal
Tip revision: 71cea6b
generate_xcode_project.sh
#!/bin/sh

ROOT_PATH=$(dirname $0)
#BUNDLE_PATH=release/chronomodel.app
# set the QT directory in argument ex: sh generate_xcode_project.sh /Users/myName/Qt/5.7/clang_64/bin

# to determine which version of the macOS SDK is installed with xcode? type on a terminal
# xcodebuild -showsdks
QT_BIN_PATH=$1

cd $ROOT_PATH
${QT_BIN_PATH}/qmake -spec macx-xcode "CONFIG+=debug" $ROOT_PATH/Chronomodel.pro

exit 0
back to top