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.
51 lines
1.1 KiB
51 lines
1.1 KiB
14 years ago
|
include_directories("../../CoreLib")
|
||
|
include_directories("../../NucleusLib/inc")
|
||
|
include_directories("../../NucleusLib")
|
||
|
include_directories("../../PubUtilLib")
|
||
|
|
||
|
#TODO: This should probably be an external dependancy
|
||
|
include_directories("../../../../SDKs/Win32/HawkVoice/src")
|
||
|
|
||
|
include_directories(${OPENAL_INCLUDE_DIR})
|
||
|
include_directories(${Speex_INCLUDE_DIR})
|
||
|
|
||
|
set(plAudio_SOURCES
|
||
|
plAudioCaps.cpp
|
||
|
plAudioSystem.cpp
|
||
|
plDSoundBuffer.cpp
|
||
|
plEAXEffects.cpp
|
||
|
plEAXListenerMod.cpp
|
||
|
plSound.cpp
|
||
|
plSoundEvent.cpp
|
||
|
plVoiceChat.cpp
|
||
|
plWAVClipBuffer.cpp
|
||
|
plWin32GroupedSound.cpp
|
||
|
plWin32Sound.cpp
|
||
|
plWin32StaticSound.cpp
|
||
|
plWin32StreamingSound.cpp
|
||
|
plWinMicLevel.cpp
|
||
|
)
|
||
|
|
||
|
set(plAudio_HEADERS
|
||
|
plAudioCaps.h
|
||
|
plAudioCreatable.h
|
||
|
plAudioSystem.h
|
||
|
plDSoundBuffer.h
|
||
|
plEAXEffects.h
|
||
|
plEAXListenerMod.h
|
||
|
plSound.h
|
||
|
plSoundEvent.h
|
||
|
plVoiceChat.h
|
||
|
plWAVClipBuffer.h
|
||
|
plWin32GroupedSound.h
|
||
|
plWin32Sound.h
|
||
|
plWin32StaticSound.h
|
||
|
plWin32StreamingSound.h
|
||
|
plWinMicLevel.h
|
||
|
)
|
||
|
|
||
|
add_library(plAudio STATIC ${plAudio_SOURCES} ${plAudio_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${plAudio_SOURCES})
|
||
|
source_group("Header Files" FILES ${plAudio_HEADERS})
|