summaryrefslogtreecommitdiffstats
path: root/qmake-features/am-package.prf
blob: 290432a784e9c5c3aa237c3a112a84dcf7b758c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CONFIG(debug,debug|release) {
    !contains(QMAKE_EXTRA_TARGETS, "package"): {
        equals(TEMPLATE, "subdirs"): {
            package.target = package
            package.CONFIG = recursive
            QMAKE_EXTRA_TARGETS += package
        } else {
            #add a dummy target to make the recursive package step work
            package.target = package
            QMAKE_EXTRA_TARGETS += package
        }
    }
}