1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Add Jenkins build config

This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-09-01 20:33:04 +02:00
parent 3c8f39c2ca
commit 532b8cec83

View File

@ -36,7 +36,11 @@ TRANSLATIONS = translations/de.ts \
RESOURCES += res.qrc
INCLUDEPATH += libs/include
contains(JENKINS,YES) {
INCLUDEPATH += ./libs/include/
} else {
INCLUDEPATH += libs/include
}
# Rules for Windows, Mac OSX, and Linux
win32 {
@ -52,6 +56,10 @@ win32 {
} else {
LIBS += -L$$PWD/libs/lib/ -ltoxcore -ltoxav -lvpx -lopenal -lopencv_core -lopencv_highgui
}
contains(JENKINS, YES) {
LIBS = ./libs/lib/libtoxav.a ./libs/lib/libvpx.a ./libs/lib/libopus.a ./libs/lib/libtoxcore.a ./libs/lib/libsodium.a -lopencv_core -lopencv_highgui -lopenal
}
}