Implements a Proxy detection (WPAD) interface for Linux, Mac OSX and Windows. Offers a GUI for manual proxy settings and automatic WPAD detection. The GUI is based on QT.
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.
22 lines
479 B
22 lines
479 B
16 years ago
|
win32 {
|
||
|
QMAKE_INCDIR += ${HOME}/.wine/drive_c/MicrosoftSDK/include
|
||
|
QMAKE_LIBS += winhttp.a
|
||
|
}
|
||
|
unix {
|
||
16 years ago
|
QMAKE_LIBS += -lproxy -ldl
|
||
|
QMAKE_LIBDIR += /usr/lib32
|
||
16 years ago
|
}
|
||
|
macx {
|
||
16 years ago
|
QMAKE_LIBS += -lproxy -ldl
|
||
16 years ago
|
QMAKE_INCDIR += /opt/local/include
|
||
|
QMAKE_LIBDIR += /opt/local/lib
|
||
|
CONFIG += x86
|
||
|
}
|
||
|
FORMS = proxyface/gui/proxy.ui
|
||
|
HEADERS = proxyface/unix.hxx proxyface/windoze.hxx \
|
||
|
proxyface/gui/proxy.hxx \
|
||
|
autoproxy.hxx
|
||
|
CONFIG += release
|
||
|
QT += network
|
||
|
TEMPLATE = lib
|