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.
39 lines
1.2 KiB
39 lines
1.2 KiB
QT += webkit network gui |
|
CONFIG += no_keywords |
|
QMAKE_LIBS += -lproxyface -lcryptoki++ -lssl -lcrypto |
|
|
|
unix { |
|
CONFIG += debug |
|
} |
|
macx { |
|
QMAKE_INCDIR += /opt/local/include |
|
QMAKE_LIBDIR += /opt/local/lib |
|
CONFIG += x86 |
|
} |
|
win32 { |
|
QMAKE_CXXFLAGS += -gstabs+ |
|
QMAKE_LIBS += -lwinhttp -lgdi32 -lws2_32 |
|
CONFIG += console |
|
} |
|
TRANSLATIONS = @PACKAGENAME@_en.ts \ |
|
@PACKAGENAME@_de.ts \ |
|
@PACKAGENAME@_fr.ts \ |
|
@PACKAGENAME@_it.ts |
|
|
|
SOURCES = main.cxx webpage.cxx |
|
|
|
HEADERS = browser.hxx smartcardauth.hxx pinentry.hxx \ |
|
downloadmanager.hxx settings.hxx sslclientnetworkmanager.hxx \ |
|
authentication.hxx webpage.hxx |
|
|
|
FORMS = browser.ui settings.ui pinentry.ui authentication.ui |
|
|
|
RESOURCES = languages.qrc resources.qrc |
|
|
|
TARGET = @PACKAGENAME@ |
|
|
|
CODECFORSRC = UTF-8 |
|
CODECFORTR = UTF-8 |
|
|
|
DEFINES += VERSION=\'\"@VERSION@\"\' BUILDDATE=\'\"@BUILDDATE@\"\' |
|
QMAKE_CXXFLAGS += -include iostream -D\"CRYPTOKI_LOG(X)=std::clog<<\\\"CRYPTOKI_\\\"<<X<<\\\"_@_\\\"<<__PRETTY_FUNCTION__<<std::endl\" -D\"PCSC_LOG(X)=std::clog<<\\\"PCSC_\\\"<<X<<\\\"_@_\\\"<<__PRETTY_FUNCTION__<<std::endl\" -D\"OPENSSL_LOG(X)=std::clog<<\\\"OPENSSL_\\\"<<X<<\\\"_@_\\\"<<__PRETTY_FUNCTION__<<std::endl'" @CPPFLAGS@ @CXXFLAGS@
|
|
|