summaryrefslogtreecommitdiffstats
path: root/qmake-features/fix-library-path.prf
blob: ca7a013297cbc44183123c7b003a6b2d4748e507 (plain)
1
2
3
4
5
6
7
8
9
10
11
defineReplace(fixLibraryPath) {
    libpath = $$1
    win32 {
        CONFIG(debug, debug|release) {
            libpath = $$join(libpath,,,/debug)
        } else {
            libpath = $$join(libpath,,,/release)
        }
    }
    return($$libpath)
}