added some dist files

This commit is contained in:
Volker Fischer 2010-04-11 07:31:05 +00:00
parent 888b354a42
commit c638ccf272

338
llcon.pro
View File

@ -1,142 +1,196 @@
CONFIG += qt \ CONFIG += qt \
thread \ thread \
release release
QT += network \ QT += network \
xml xml
INCLUDEPATH += src \ INCLUDEPATH += src \
libs/celt libs/celt
DEFINES += USE_ALLOCA \ DEFINES += USE_ALLOCA \
_REENTRANT \ _REENTRANT \
_IS_QMAKE_CONFIG _IS_QMAKE_CONFIG
win32 { win32 {
HEADERS += windows/sound.h HEADERS += windows/sound.h
SOURCES += windows/sound.cpp SOURCES += windows/sound.cpp
} else:macx { } else:macx {
HEADERS += mac/sound.h HEADERS += mac/sound.h
SOURCES += mac/sound.cpp SOURCES += mac/sound.cpp
RC_FILE = mac/llcon.icns RC_FILE = mac/llcon.icns
CONFIG += x86 ppc CONFIG += x86 ppc
LIBS += -framework CoreFoundation \ LIBS += -framework CoreFoundation \
-framework CoreServices \ -framework CoreServices \
-framework CoreAudio \ -framework CoreAudio \
-framework AudioToolbox \ -framework AudioToolbox \
-framework AudioUnit -framework AudioUnit
} else:unix { } else:unix {
# only include jack support if CONFIG nosound is not set # only include jack support if CONFIG nosound is not set
nosoundoption = $$find(CONFIG, "nosound") nosoundoption = $$find(CONFIG, "nosound")
count(nosoundoption, 0) { count(nosoundoption, 0) {
message(Jack Audio Interface Enabled.) message(Jack Audio Interface Enabled.)
HEADERS += linux/sound.h HEADERS += linux/sound.h
SOURCES += linux/sound.cpp SOURCES += linux/sound.cpp
DEFINES += WITH_SOUND
DEFINES += WITH_SOUND LIBS += -ljack
}
LIBS += -ljack }
}
} RCC_DIR = src/res
RESOURCES += src/resources.qrc
RCC_DIR = src/res
RESOURCES += src/resources.qrc FORMS += src/llconclientdlgbase.ui \
src/llconserverdlgbase.ui \
FORMS += src/llconclientdlgbase.ui \ src/clientsettingsdlgbase.ui \
src/llconserverdlgbase.ui \ src/chatdlgbase.ui \
src/clientsettingsdlgbase.ui \ src/aboutdlgbase.ui
src/chatdlgbase.ui \
src/aboutdlgbase.ui HEADERS += src/buffer.h \
src/global.h \
HEADERS += src/buffer.h \ src/socket.h \
src/global.h \ src/channel.h \
src/socket.h \ src/util.h \
src/channel.h \ src/client.h \
src/util.h \ src/server.h \
src/client.h \ src/settings.h \
src/server.h \ src/protocol.h \
src/settings.h \ src/multicolorled.h \
src/protocol.h \ src/multicolorledbar.h \
src/multicolorled.h \ src/audiomixerboard.h \
src/multicolorledbar.h \ src/serverlogging.h \
src/audiomixerboard.h \ src/testbench.h \
src/serverlogging.h \ src/soundbase.h \
src/testbench.h \ src/llconserverdlg.h \
src/soundbase.h \ src/chatdlg.h \
src/llconserverdlg.h \ src/llconclientdlg.h \
src/chatdlg.h \ src/clientsettingsdlg.h \
src/llconclientdlg.h \ libs/celt/ecintrin.h \
src/clientsettingsdlg.h \ libs/celt/celt.h \
libs/celt/ecintrin.h \ libs/celt/celt_types.h \
libs/celt/celt.h \ libs/celt/celt_header.h \
libs/celt/celt_types.h \ libs/celt/_kiss_fft_guts.h \
libs/celt/celt_header.h \ libs/celt/arch.h \
libs/celt/_kiss_fft_guts.h \ libs/celt/bands.h \
libs/celt/arch.h \ libs/celt/fixed_c5x.h \
libs/celt/bands.h \ libs/celt/fixed_c6x.h \
libs/celt/fixed_c5x.h \ libs/celt/cwrs.h \
libs/celt/fixed_c6x.h \ libs/celt/ecintrin.h \
libs/celt/cwrs.h \ libs/celt/entcode.h \
libs/celt/ecintrin.h \ libs/celt/entdec.h \
libs/celt/entcode.h \ libs/celt/entenc.h \
libs/celt/entdec.h \ libs/celt/fixed_generic.h \
libs/celt/entenc.h \ libs/celt/float_cast.h \
libs/celt/fixed_generic.h \ libs/celt/kfft_double.h \
libs/celt/float_cast.h \ libs/celt/kfft_single.h \
libs/celt/kfft_double.h \ libs/celt/kiss_fft.h \
libs/celt/kfft_single.h \ libs/celt/kiss_fftr.h \
libs/celt/kiss_fft.h \ libs/celt/laplace.h \
libs/celt/kiss_fftr.h \ libs/celt/mdct.h \
libs/celt/laplace.h \ libs/celt/mfrngcod.h \
libs/celt/mdct.h \ libs/celt/mathops.h \
libs/celt/mfrngcod.h \ libs/celt/modes.h \
libs/celt/mathops.h \ libs/celt/os_support.h \
libs/celt/modes.h \ libs/celt/pitch.h \
libs/celt/os_support.h \ libs/celt/psy.h \
libs/celt/pitch.h \ libs/celt/quant_bands.h \
libs/celt/psy.h \ libs/celt/rate.h \
libs/celt/quant_bands.h \ libs/celt/stack_alloc.h \
libs/celt/rate.h \ libs/celt/vq.h
libs/celt/stack_alloc.h \
libs/celt/vq.h SOURCES += src/buffer.cpp \
src/main.cpp \
SOURCES += src/buffer.cpp \ src/socket.cpp \
src/main.cpp \ src/channel.cpp \
src/socket.cpp \ src/util.cpp \
src/channel.cpp \ src/llconclientdlg.cpp \
src/util.cpp \ src/clientsettingsdlg.cpp \
src/llconclientdlg.cpp \ src/llconserverdlg.cpp \
src/clientsettingsdlg.cpp \ src/chatdlg.cpp \
src/llconserverdlg.cpp \ src/client.cpp \
src/chatdlg.cpp \ src/server.cpp \
src/client.cpp \ src/settings.cpp \
src/server.cpp \ src/protocol.cpp \
src/settings.cpp \ src/multicolorled.cpp \
src/protocol.cpp \ src/multicolorledbar.cpp \
src/multicolorled.cpp \ src/audiomixerboard.cpp \
src/multicolorledbar.cpp \ src/serverlogging.cpp \
src/audiomixerboard.cpp \ src/soundbase.cpp \
src/serverlogging.cpp \ libs/celt/bands.c \
src/soundbase.cpp \ libs/celt/celt.c \
libs/celt/bands.c \ libs/celt/cwrs.c \
libs/celt/celt.c \ libs/celt/entcode.c \
libs/celt/cwrs.c \ libs/celt/entdec.c \
libs/celt/entcode.c \ libs/celt/entenc.c \
libs/celt/entdec.c \ libs/celt/header.c \
libs/celt/entenc.c \ libs/celt/kfft_single.c \
libs/celt/header.c \ libs/celt/_kiss_fft.c \
libs/celt/kfft_single.c \ libs/celt/_kiss_fftr.c \
libs/celt/_kiss_fft.c \ libs/celt/laplace.c \
libs/celt/_kiss_fftr.c \ libs/celt/mdct.c \
libs/celt/laplace.c \ libs/celt/modes.c \
libs/celt/mdct.c \ libs/celt/pitch.c \
libs/celt/modes.c \ libs/celt/psy.c \
libs/celt/pitch.c \ libs/celt/quant_bands.c \
libs/celt/psy.c \ libs/celt/rangedec.c \
libs/celt/quant_bands.c \ libs/celt/rangeenc.c \
libs/celt/rangedec.c \ libs/celt/rate.c \
libs/celt/rangeenc.c \ libs/celt/vq.c
libs/celt/rate.c \
libs/celt/vq.c DISTFILES += AUTHORS \
COPYING \
NEWS \
TODO \
README \
INSTALL \
ChangeLog \
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/faderbackground.png \
src/res/faderhandle.png \
src/res/faderhandlesmall.png \
src/res/ledbuttonnotpressed.png \
src/res/ledbuttonpressed.png \
src/res/mixerboardbackground.png \
src/res/gig.png \
src/res/mainicon.png \
src/res/CLEDBlack.png \
src/res/CLEDGrey.png \
src/res/CLEDGreen.png \
src/res/CLEDYellow.png \
src/res/CLEDRed.png \
src/res/CLEDDisabledSmall.png \
src/res/CLEDBlackSmall.png \
src/res/CLEDGreySmall.png \
src/res/CLEDGreenSmall.png \
src/res/CLEDYellowSmall.png \
src/res/CLEDRedSmall.png \
src/res/VLEDBlack.png \
src/res/VLEDGrey.png \
src/res/VLEDGreen.png \
src/res/VLEDYellow.png \
src/res/VLEDRed.png \
src/res/VLEDDisabledSmall.png \
src/res/VLEDBlackSmall.png \
src/res/VLEDGreySmall.png \
src/res/VLEDGreenSmall.png \
src/res/VLEDYellowSmall.png \
src/res/VLEDRedSmall.png \
src/res/VRLEDBlack.png \
src/res/VRLEDGrey.png \
src/res/VRLEDGreen.png \
src/res/VRLEDYellow.png \
src/res/VRLEDRed.png \
src/res/VRLEDBlackSmall.png \
src/res/VRLEDGreySmall.png \
src/res/VRLEDGreenSmall.png \
src/res/VRLEDYellowSmall.png \
src/res/VRLEDRedSmall.png