added some include directories for Windows

This commit is contained in:
Volker Fischer 2011-04-23 10:16:18 +00:00
parent 0dae88285a
commit a1ff21b8e8

424
llcon.pro
View File

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