jamulus/llcon.pro

260 lines
6.9 KiB
Prolog
Raw Normal View History

CONFIG += qt \
thread \
release
2013-01-08 16:51:44 +01:00
QT += widgets \
network \
xml
INCLUDEPATH += src \
libs/celt
DEFINES += USE_ALLOCA \
_REENTRANT
win32 {
2013-01-13 20:26:37 +01:00
DEFINES -= UNICODE # fixes issue with ASIO SDK (asiolist.cpp is not unicode compatible)
DEFINES += NOMINMAX # solves a compiler error in qdatetime.h (Qt5)
HEADERS += windows/sound.h
SOURCES += windows/sound.cpp \
windows/ASIOSDK2/common/asio.cpp \
windows/ASIOSDK2/host/asiodrivers.cpp \
windows/ASIOSDK2/host/pc/asiolist.cpp
2011-04-23 18:16:44 +02:00
RC_FILE = windows/llcon.rc
INCLUDEPATH += windows/ASIOSDK2/common \
windows/ASIOSDK2/host \
2013-01-10 20:50:31 +01:00
windows/ASIOSDK2/host/pc
LIBS += ole32.lib \
user32.lib \
advapi32.lib \
winmm.lib
} else:macx {
HEADERS += mac/sound.h
SOURCES += mac/sound.cpp
RC_FILE = mac/llcon.icns
CONFIG += x86 ppc
LIBS += -framework CoreFoundation \
-framework CoreServices \
-framework CoreAudio \
-framework AudioToolbox \
-framework AudioUnit
} else:unix {
# we assume that stdint.h is always present in a Linux system
DEFINES += HAVE_STDINT_H
2011-06-28 21:16:52 +02:00
# only include jack support if CONFIG nosound is not set
nosoundoption = $$find(CONFIG, "nosound")
count(nosoundoption, 0) {
message(Jack Audio Interface Enabled.)
HEADERS += linux/sound.h
SOURCES += linux/sound.cpp
DEFINES += WITH_SOUND
LIBS += -ljack
}
# Linux is our source distribution, include sources from other OSs
DISTFILES += mac/sound.h \
mac/sound.cpp \
mac/llcon.icns \
windows/sound.h \
windows/sound.cpp \
windows/llcon.rc \
windows/mainicon.ico
}
RCC_DIR = src/res
RESOURCES += src/resources.qrc
FORMS += src/llconclientdlgbase.ui \
src/llconserverdlgbase.ui \
src/clientsettingsdlgbase.ui \
src/chatdlgbase.ui \
src/connectdlgbase.ui \
src/aboutdlgbase.ui
HEADERS += src/audiomixerboard.h \
src/buffer.h \
src/channel.h \
src/chatdlg.h \
src/client.h \
src/clientsettingsdlg.h \
src/connectdlg.h \
src/global.h \
src/llconclientdlg.h \
src/llconserverdlg.h \
src/multicolorled.h \
src/multicolorledbar.h \
src/protocol.h \
src/server.h \
src/serverlist.h \
src/serverlogging.h \
src/settings.h \
src/socket.h \
src/soundbase.h \
src/testbench.h \
src/util.h \
2013-02-13 17:40:26 +01:00
libs/celt/cc6_celt.h \
2013-02-13 18:08:47 +01:00
libs/celt/cc6_celt_types.h \
2013-02-13 18:02:24 +01:00
libs/celt/cc6_celt_header.h \
2013-02-13 18:08:47 +01:00
libs/celt/cc6__kiss_fft_guts.h \
libs/celt/cc6_arch.h \
libs/celt/cc6_bands.h \
2013-02-13 18:30:28 +01:00
libs/celt/cc6_fixed_c5x.h \
libs/celt/cc6_fixed_c6x.h \
2013-02-13 18:20:51 +01:00
libs/celt/cc6_cwrs.h \
libs/celt/cc6_ecintrin.h \
libs/celt/cc6_entcode.h \
libs/celt/cc6_entdec.h \
libs/celt/cc6_entenc.h \
2013-02-13 18:30:28 +01:00
libs/celt/cc6_fixed_generic.h \
libs/celt/cc6_float_cast.h \
libs/celt/cc6_kfft_double.h \
libs/celt/cc6_kfft_single.h \
2013-02-13 19:51:13 +01:00
libs/celt/cc6_kiss_fft.h \
libs/celt/cc6_kiss_fftr.h \
libs/celt/cc6_laplace.h \
libs/celt/cc6_mdct.h \
libs/celt/cc6_mfrngcod.h \
libs/celt/cc6_mathops.h \
libs/celt/cc6_modes.h \
libs/celt/cc6_os_support.h \
libs/celt/cc6_pitch.h \
libs/celt/cc6_psy.h \
libs/celt/cc6_quant_bands.h \
libs/celt/cc6_rate.h \
libs/celt/cc6_stack_alloc.h \
libs/celt/cc6_vq.h
SOURCES += src/audiomixerboard.cpp \
src/buffer.cpp \
src/channel.cpp \
src/chatdlg.cpp \
src/client.cpp \
src/clientsettingsdlg.cpp \
src/connectdlg.cpp \
src/llconclientdlg.cpp \
src/llconserverdlg.cpp \
src/main.cpp \
src/multicolorled.cpp \
src/multicolorledbar.cpp \
src/protocol.cpp \
src/server.cpp \
src/serverlist.cpp \
src/serverlogging.cpp \
src/settings.cpp \
src/socket.cpp \
src/soundbase.cpp \
src/util.cpp \
2013-02-13 18:02:25 +01:00
libs/celt/cc6_bands.c \
libs/celt/cc6_celt.c \
libs/celt/cc6_cwrs.c \
2013-02-13 18:20:51 +01:00
libs/celt/cc6_entcode.c \
libs/celt/cc6_entdec.c \
libs/celt/cc6_entenc.c \
2013-02-13 18:30:28 +01:00
libs/celt/cc6_header.c \
libs/celt/cc6_kfft_single.c \
2013-02-13 18:02:24 +01:00
libs/celt/cc6__kiss_fft.c \
2013-02-13 18:02:25 +01:00
libs/celt/cc6__kiss_fftr.c \
2013-02-13 19:51:13 +01:00
libs/celt/cc6_laplace.c \
libs/celt/cc6_mdct.c \
libs/celt/cc6_modes.c \
libs/celt/cc6_pitch.c \
libs/celt/cc6_psy.c \
libs/celt/cc6_quant_bands.c \
libs/celt/cc6_rangedec.c \
libs/celt/cc6_rangeenc.c \
libs/celt/cc6_rate.c \
libs/celt/cc6_vq.c
DISTFILES += AUTHORS \
ChangeLog \
COPYING \
INSTALL \
NEWS \
README \
TODO \
libs/celt/AUTHORS \
libs/celt/ChangeLog \
libs/celt/COPYING \
libs/celt/INSTALL \
libs/celt/NEWS \
libs/celt/README \
libs/celt/README_LLCON \
libs/celt/TODO \
src/res/CLEDBlack.png \
src/res/CLEDBlackSmall.png \
src/res/CLEDDisabledSmall.png \
src/res/CLEDGreen.png \
2011-05-06 22:19:30 +02:00
src/res/CLEDGreenArrow.png \
src/res/CLEDGreenSmall.png \
src/res/CLEDGrey.png \
2011-05-06 22:19:30 +02:00
src/res/CLEDGreyArrow.png \
src/res/CLEDGreySmall.png \
src/res/CLEDRed.png \
src/res/CLEDRedSmall.png \
src/res/CLEDYellow.png \
src/res/CLEDYellowSmall.png \
src/res/faderbackground.png \
src/res/faderhandle.png \
src/res/faderhandlesmall.png \
src/res/HLEDGreen.png \
src/res/HLEDGreenSmall.png \
src/res/HLEDGrey.png \
src/res/HLEDGreySmall.png \
src/res/HLEDRed.png \
src/res/HLEDRedSmall.png \
src/res/HLEDYellow.png \
src/res/HLEDYellowSmall.png \
src/res/ledbuttonnotpressed.png \
src/res/ledbuttonpressed.png \
src/res/llconfronticon.png \
src/res/logopicture.png \
src/res/mainicon.png \
src/res/mixerboardbackground.png \
src/res/VLEDBlack.png \
src/res/VLEDBlackSmall.png \
src/res/VLEDDisabledSmall.png \
src/res/VLEDGreen.png \
src/res/VLEDGreenSmall.png \
src/res/VLEDGrey.png \
src/res/VLEDGreySmall.png \
src/res/VLEDRed.png \
src/res/VLEDRedSmall.png \
src/res/VLEDYellow.png \
src/res/VLEDYellowSmall.png \
src/res/VRLEDBlack.png \
src/res/VRLEDBlackSmall.png \
src/res/VRLEDGreen.png \
src/res/VRLEDGreenSmall.png \
src/res/VRLEDGrey.png \
src/res/VRLEDGreySmall.png \
src/res/VRLEDRed.png \
src/res/VRLEDRedSmall.png \
src/res/VRLEDYellow.png \
2013-02-13 17:40:26 +01:00
src/res/VRLEDYellowSmall.png \
src/res/instraccordeon.png \
src/res/instraguitar.png \
src/res/instrbassguitar.png \
src/res/instrcello.png \
src/res/instrclarinet.png \
src/res/instrdjembe.png \
src/res/instrdoublebass.png \
src/res/instrdrumset.png \
src/res/instreguitar.png \
src/res/instrflute.png \
src/res/instrfrenchhorn.png \
src/res/instrgrandpiano.png \
src/res/instrharmonica.png \
src/res/instrkeyboard.png \
src/res/instrmicrophone.png \
src/res/instrnone.png \
src/res/instrsaxophone.png \
src/res/instrsynthesizer.png \
src/res/instrtrombone.png \
src/res/instrtrumpet.png \
src/res/instrtuba.png \
src/res/instrviolin.png \
src/res/instrvocal.png