jenkinsmain
Line | |
---|
1 | TEMPLATE = app |
---|
2 | DESTDIR = .. |
---|
3 | |
---|
4 | CONFIG += qt debug_and_release warn_on build_all static |
---|
5 | |
---|
6 | QT += core gui webkit |
---|
7 | |
---|
8 | MOC_DIR = ../.moc |
---|
9 | |
---|
10 | CONFIG(debug, debug|release) { |
---|
11 | OBJECTS_DIR = ../.objs_d |
---|
12 | TARGET = browser_d |
---|
13 | LIBS += -L.. ../libqtermwidget_d.a |
---|
14 | } else { |
---|
15 | OBJECTS_DIR = ../.objs |
---|
16 | TARGET = browser |
---|
17 | LIBS += -L.. ../libqtermwidget.a |
---|
18 | } |
---|
19 | |
---|
20 | SOURCES = main.cpp mainwindow.cpp |
---|
21 | |
---|
22 | HEADERS = mainwindow.h |
---|
23 | |
---|
24 | INCLUDEPATH = ../qtermwidget/src |
---|
25 | |
---|
26 | #LIBS += -L.. -lqtermwidget |
---|
27 | |
---|
28 | |
---|
29 | |
---|
Note: See
TracBrowser
for help on using the repository browser.