A simple Qt based browser with no bullshit that supports PKCS#11 tokens (such as the SuisseID).
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.
|
|
|
QT += webkit network gui
|
|
|
|
CONFIG += release
|
|
|
|
QMAKE_LIBS += -lproxyface -lcryptoki++ -lssl
|
|
|
|
QMAKE_INCDIR += ../../qt/qt-everywhere-opensource-src-4.6.3/include/Qt \
|
|
|
|
../../openssl-act-engine/src/
|
|
|
|
|
|
|
|
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 smartcardauth.cxx pindialog.cxx
|
|
|
|
HEADERS = browser.hxx smartcardauth.hxx pindialog.hxx
|
|
|
|
FORMS = browser.ui
|
|
|
|
RESOURCES = languages.qrc resources.qrc
|
|
|
|
TARGET = @PACKAGENAME@
|
|
|
|
CODECFORSRC = UTF-8
|
|
|
|
CODECFORTR = UTF-8
|