qskinny/features/qskfunctions.pri

25 lines
553 B
Plaintext
Raw Normal View History

2018-10-25 10:11:12 +02:00
############################################################################
# QSkinny - Copyright (C) 2016 Uwe Rathmann
# This file may be used under the terms of the QSkinny License, Version 1.0
############################################################################
defineReplace(qskLibraryTarget) {
return( $$qtLibraryTarget($$1) )
}
2018-10-25 10:11:12 +02:00
defineReplace(qskPluginTarget) {
2018-10-25 10:11:12 +02:00
return( $$qtLibraryTarget($$1) )
2018-10-25 10:11:12 +02:00
}
defineTest(qskAddLibrary) {
LIBS *= -L$$1
LIBS += -l$$2$$qtPlatformTargetSuffix()
2018-10-25 10:11:12 +02:00
export(LIBS)
return(true)
}