mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-27 12:04:31 +00:00
17 lines
344 B
Plaintext
17 lines
344 B
Plaintext
include(confapp.pri)
|
|
|
|
mac: {
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET=$$(QMAKE_MACOSX_DEPLOYMENT_TARGET)
|
|
isEmpty(QMAKE_MACOSX_DEPLOYMENT_TARGET) {
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.3
|
|
}
|
|
}
|
|
|
|
exists(crypto.prf) {
|
|
# our apps should build against the qca in this tree
|
|
include(crypto.prf)
|
|
} else {
|
|
# attempt to use system-wide qca
|
|
CONFIG *= crypto
|
|
}
|