Skip resources in non-Qt case

This commit is contained in:
Matthias Koefferlein 2022-05-27 20:26:47 +02:00
parent d5723391fd
commit b22c7091ae
3 changed files with 12 additions and 5 deletions

View File

@ -13,8 +13,10 @@ HEADERS = \
drcCommon.h \
drcForceLink.h \
RESOURCES = \
drcResources.qrc
!equals(HAVE_QT, "0") {
RESOURCES = \
drcResources.qrc
}
INCLUDEPATH += $$TL_INC $$DB_INC $$GSI_INC $$LYM_INC $$RDB_INC
DEPENDPATH += $$TL_INC $$DB_INC $$GSI_INC $$LYM_INC $$RDB_INC

View File

@ -13,8 +13,10 @@ HEADERS = \
lvsCommon.h \
lvsForceLink.h \
RESOURCES = \
lvsResources.qrc
!equals(HAVE_QT, "0") {
RESOURCES = \
lvsResources.qrc
}
INCLUDEPATH += $$TL_INC $$DB_INC $$GSI_INC $$LYM_INC $$RDB_INC
DEPENDPATH += $$TL_INC $$DB_INC $$GSI_INC $$LYM_INC $$RDB_INC

View File

@ -14,4 +14,7 @@ DEPENDPATH += $$RBA_INC $$TL_INC $$DB_INC $$GSI_INC
LIBS += -L$$DESTDIR_UT -lklayout_rba -lklayout_tl -lklayout_db -lklayout_gsi
RESOURCES = unit_tests.qrc \
!equals(HAVE_QT, "0") {
RESOURCES = \
unit_tests.qrc
}