source: ogBrowser-Git/src/src.pro @ 987869c

jenkinsmain
Last change on this file since 987869c was 8ab4781, checked in by adelcastillo <adelcastillo@…>, 15 years ago

Cambiando a qmake de nuevo.

git-svn-id: https://opengnsys.es/svn/trunk@518 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 483 bytes
Line 
1TEMPLATE        = app
2DESTDIR         = ..
3
4CONFIG          += qt debug_and_release warn_on build_all static
5
6QT += core gui webkit
7
8MOC_DIR         = ../.moc
9
10CONFIG(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
20SOURCES         = main.cpp mainwindow.cpp
21
22HEADERS = mainwindow.h
23
24INCLUDEPATH     = ../qtermwidget/src
25
26#LIBS           += -L.. -lqtermwidget
27
28
29       
Note: See TracBrowser for help on using the repository browser.