mirror of
https://github.com/QuasarApp/Qt-AES.git
synced 2025-04-26 05:34:33 +00:00
24 lines
497 B
Plaintext
Executable File
24 lines
497 B
Plaintext
Executable File
#
|
|
# Copyright (C) 2018-2020 QuasarApp.
|
|
# Distributed under the lgplv3 software license, see the accompanying
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
# of this license document, but changing it is not allowed.
|
|
#
|
|
|
|
!isEmpty(CCACHE_INCLUDE):error("ccache.pri already included")
|
|
CCACHE_INCLUDE = 1
|
|
|
|
contains(QMAKE_HOST.os, Linux):{
|
|
BIN = $$system(which ccache)
|
|
|
|
!isEmpty(BIN) {
|
|
message(ccache detected in $$BIN)
|
|
QMAKE_CXX='$$BIN $$QMAKE_CXX'
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|