2010-06-22 13:30:36 +00:00
|
|
|
# Check that people use the good file
|
|
|
|
if(NOT TOP_CMAKE_WAS_SOURCED)
|
|
|
|
message(FATAL_ERROR "
|
|
|
|
You did not 'cmake' the good CMakeLists.txt file. Use the one in the top dir.
|
|
|
|
It is advice to delete all wrongly generated cmake stuff => CMakeFiles & CMakeCache.txt")
|
2014-12-14 13:00:20 +00:00
|
|
|
endif()
|
2010-06-22 13:30:36 +00:00
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
|
|
|
|
# plugin name
|
2010-07-25 13:54:26 +00:00
|
|
|
set(Output zerospu2)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
2010-06-03 15:12:29 +00:00
|
|
|
set(OptimizationFlags
|
|
|
|
-O2
|
|
|
|
)
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Debug)
|
2014-12-14 13:00:20 +00:00
|
|
|
set(zerospu2FinalFlags "")
|
|
|
|
|
|
|
|
elseif(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
set(zerospu2FinalFlags ${OptimizationFlags})
|
|
|
|
|
|
|
|
elseif(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
set(zerospu2FinalFlags ${OptimizationFlags})
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# zerospu2 sources
|
|
|
|
set(zerospu2Sources
|
|
|
|
voices.cpp
|
2010-12-12 11:08:04 +00:00
|
|
|
WavFile.cpp
|
2010-01-21 15:12:50 +00:00
|
|
|
zerodma.cpp
|
2010-02-12 11:42:29 +00:00
|
|
|
zerospu2.cpp
|
|
|
|
zeroworker.cpp)
|
2010-06-03 15:12:29 +00:00
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# zerospu2 headers
|
|
|
|
set(zerospu2Headers
|
|
|
|
misc.h
|
|
|
|
reg.h
|
2010-12-12 11:08:04 +00:00
|
|
|
WavFile.h
|
2010-02-12 11:42:29 +00:00
|
|
|
zerodma.h
|
|
|
|
zerospu2.h
|
|
|
|
zeroworker.h)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
|
|
|
# zerospu2 Linux sources
|
|
|
|
set(zerospu2LinuxSources
|
|
|
|
Linux/Linux.cpp
|
|
|
|
Targets/Alsa.cpp
|
|
|
|
Targets/OSS.cpp
|
|
|
|
# Targets/PortAudio.cpp
|
|
|
|
Targets/SoundTargets.cpp)
|
|
|
|
|
|
|
|
# zerospu2 Linux headers
|
|
|
|
set(zerospu2LinuxHeaders
|
|
|
|
Linux/Linux.h
|
|
|
|
Targets/Alsa.h
|
|
|
|
Targets/OSS.h
|
|
|
|
# Targets/PortAudio.h
|
|
|
|
Targets/SoundTargets.h)
|
|
|
|
|
|
|
|
# zerospu2 Windows sources
|
|
|
|
set(zerospu2WindowsSources
|
|
|
|
Targets/dsound51.cpp
|
|
|
|
Windows/Win32.cpp
|
|
|
|
Windows/ZeroSPU2.def
|
|
|
|
Windows/ZeroSPU2.rc)
|
|
|
|
|
|
|
|
# zerospu2 Windows headers
|
|
|
|
set(zerospu2WindowsHeaders
|
|
|
|
resources.h
|
|
|
|
Targets/dsound51.h)
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
# add additional include directories
|
2014-08-04 16:42:40 +00:00
|
|
|
include_directories(Linux Targets)
|
2010-01-22 04:36:49 +00:00
|
|
|
|
2014-08-04 16:42:40 +00:00
|
|
|
set(zerospu2FinalSources
|
|
|
|
${zerospu2Sources}
|
|
|
|
${zerospu2Headers}
|
|
|
|
${zerospu2LinuxSources}
|
|
|
|
${zerospu2LinuxHeaders}
|
|
|
|
)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
2014-08-04 16:42:40 +00:00
|
|
|
set(zerospu2FinalLibs
|
|
|
|
${ALSA_LIBRARIES}
|
|
|
|
# PortAudio would go here.
|
|
|
|
${SOUNDTOUCH_LIBRARIES}
|
|
|
|
)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
if(PORTAUDIO_FOUND)
|
|
|
|
# link target with PortAudio
|
2010-07-25 13:54:26 +00:00
|
|
|
#target_link_libraries(${Output} ${PORTAUDIO_LIBRARIES})
|
2010-01-22 04:36:49 +00:00
|
|
|
endif(PORTAUDIO_FOUND)
|
|
|
|
|
2014-08-04 16:42:40 +00:00
|
|
|
add_pcsx2_plugin(${Output} "${zerospu2FinalSources}" "${zerospu2FinalLibs}" "${zerospu2FinalFlags}")
|