You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
630 B
27 lines
630 B
QT += webkit network gui |
|
CONFIG += release |
|
QMAKE_LIBS += -lproxyface -lcryptoki++ |
|
unix { |
|
QMAKE_LIBS += -lproxy |
|
} |
|
macx { |
|
QMAKE_LIBS += -lproxy |
|
QMAKE_INCDIR += /opt/local/include |
|
QMAKE_LIBDIR += /opt/local/lib |
|
CONFIG += x86 |
|
} |
|
win32 { |
|
QMAKE_LIBS += /opt/local/i586-mingw32msvc/lib/winhttp.a |
|
CONFIG += console |
|
} |
|
TRANSLATIONS = @PACKAGENAME@_en.ts \ |
|
@PACKAGENAME@_de.ts \ |
|
@PACKAGENAME@_fr.ts \ |
|
@PACKAGENAME@_it.ts |
|
SOURCES = main.cxx |
|
HEADERS = browser.hxx |
|
FORMS = browser.ui |
|
RESOURCES = languages.qrc resources.qrc |
|
TARGET = @PACKAGENAME@ |
|
CODECFORSRC = UTF-8 |
|
CODECFORTR = UTF-8
|
|
|