| 1 | TEMPLATE = app |
|---|
| 2 | TARGET = |
|---|
| 3 | DEPENDPATH += . |
|---|
| 4 | INCLUDEPATH += . icecast /usr/include/libxml2/ |
|---|
| 5 | DEFINES += HAVE_CONFIG_H |
|---|
| 6 | |
|---|
| 7 | linux:LIBS += -lssl -lcrypto -lcurl -lspeex -ltheora -logg -lvorbis -lxslt -lxml2 |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | #linux:INCLUDEPATH += /usr/include/libxml2/ |
|---|
| 11 | #win32-x-g++:INCLUDEPATH += /home/rgareus/.wine/drive_c/cygwin/usr/include |
|---|
| 12 | |
|---|
| 13 | LIBS += -lssl -lcrypto -lcurl -logg -lxml2 -L/home/rgareus/.wine/drive_c/cygwin/lib -lcygwin |
|---|
| 14 | #win32-x-g++:LIBPATH+=/home/rgareus/.wine/drive_c/cygwin/lib |
|---|
| 15 | #win32-x-g++:LIBS += -static |
|---|
| 16 | |
|---|
| 17 | FORMS += qinout.ui |
|---|
| 18 | |
|---|
| 19 | HEADERS += inout.h \ |
|---|
| 20 | \ |
|---|
| 21 | config.h \ |
|---|
| 22 | \ |
|---|
| 23 | icecast/avl/avl.h \ |
|---|
| 24 | icecast/httpp/httpp.h \ |
|---|
| 25 | icecast/log/log.h \ |
|---|
| 26 | icecast/net/resolver.h icecast/net/sock.h \ |
|---|
| 27 | icecast/thread/thread.h \ |
|---|
| 28 | icecast/timing/timing.h \ |
|---|
| 29 | \ |
|---|
| 30 | icecast/admin.h icecast/cfgfile.h icecast/logging.h icecast/sighandler.h icecast/connection.h \ |
|---|
| 31 | icecast/global.h icecast/util.h icecast/slave.h icecast/source.h icecast/stats.h icecast/refbuf.h icecast/client.h \ |
|---|
| 32 | icecast/compat.h icecast/fserve.h icecast/xslt.h icecast/yp.h icecast/event.h icecast/md5.h \ |
|---|
| 33 | icecast/auth.h icecast/auth_htpasswd.h icecast/auth_url.h \ |
|---|
| 34 | icecast/format.h icecast/format_ogg.h icecast/format_mp3.h \ |
|---|
| 35 | icecast/format_vorbis.h icecast/format_theora.h icecast/format_flac.h icecast/format_speex.h icecast/format_midi.h \ |
|---|
| 36 | icecast/format_kate.h icecast/format_skeleton.h \ |
|---|
| 37 | |
|---|
| 38 | SOURCES += inout.cpp main.cpp \ |
|---|
| 39 | \ |
|---|
| 40 | icecast/avl/avl.c \ |
|---|
| 41 | icecast/httpp/httpp.c \ |
|---|
| 42 | icecast/log/log.c \ |
|---|
| 43 | icecast/net/resolver.c icecast/net/sock.c \ |
|---|
| 44 | icecast/thread/thread.c \ |
|---|
| 45 | icecast/timing/timing.c \ |
|---|
| 46 | \ |
|---|
| 47 | icecast/cfgfile.c icecast/logging.c icecast/sighandler.c icecast/connection.c icecast/global.c \ |
|---|
| 48 | icecast/util.c icecast/slave.c icecast/source.c icecast/stats.c icecast/refbuf.c icecast/client.c \ |
|---|
| 49 | icecast/xslt.c icecast/fserve.c icecast/event.c icecast/admin.c icecast/md5.c \ |
|---|
| 50 | icecast/format.c icecast/format_ogg.c icecast/format_mp3.c icecast/format_midi.c icecast/format_flac.c \ |
|---|
| 51 | icecast/auth.c icecast/auth_htpasswd.c icecast/format_kate.c icecast/format_skeleton.c \ |
|---|
| 52 | icecast/yp.c icecast/auth_url.c icecast/format_vorbis.c icecast/format_theora.c icecast/format_speex.c \ |
|---|
| 53 | \ |
|---|
| 54 | |
|---|
| 55 | |
|---|
| 56 | QT += xml network |
|---|