import zeitschreibung

This commit is contained in:
2019-10-24 16:11:47 +02:00
parent 5446c17ad7
commit dfa2fe5198
5 changed files with 387 additions and 4 deletions
+22 -1
View File
@@ -11,6 +11,25 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = workingHours
TEMPLATE = app
win32-msvc* {
contains(QT_ARCH, i386) {
message("msvc 32-bit")
} else {
message("msvc 64-bit")
}
}
win32-g++ {
message("mingw")
INCLUDEPATH += C:\dev\3rdParty\PoDoFo\include
LIBS += -LC:\dev\3rdParty\PoDoFo\lib -lpodofo.dll
}
unix {
message("*nix")
LIBS += -lpodofo
}
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
@@ -33,6 +52,7 @@ SOURCES += \
common.cpp \
cpublicholiday.cpp \
cvacation.cpp \
czeitnachweis.cpp \
main.cpp \
cmainwindow.cpp
@@ -45,7 +65,8 @@ HEADERS += \
cmonthlyview.h \
common.h \
cpublicholiday.h \
cvacation.h
cvacation.h \
czeitnachweis.h
FORMS += \
cmainwindow.ui \