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 SPU2null)
|
2015-08-08 13:25:17 +00:00
|
|
|
set(SPU2nullFinalFlags "")
|
2010-01-22 04:36:49 +00:00
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# SPU2null sources
|
|
|
|
set(SPU2nullSources
|
|
|
|
SPU2.cpp)
|
2010-06-03 15:12:29 +00:00
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# SPU2null headers
|
|
|
|
set(SPU2nullHeaders
|
|
|
|
SPU2.h)
|
|
|
|
|
|
|
|
# SPU2null Linux sources
|
|
|
|
set(SPU2nullLinuxSources
|
2010-06-10 17:38:09 +00:00
|
|
|
Linux/Config.cpp)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
|
|
|
# SPU2null Linux headers
|
|
|
|
set(SPU2nullLinuxHeaders
|
2010-06-10 17:38:09 +00:00
|
|
|
Linux/Config.h)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
|
|
|
# SPU2null Windows sources
|
|
|
|
set(SPU2nullWindowsSources
|
|
|
|
Windows/Config.cpp
|
|
|
|
Windows/SPU2null.def
|
|
|
|
Windows/SPU2null.rc
|
|
|
|
Windows/Win32.cpp)
|
|
|
|
|
|
|
|
# SPU2null Windows headers
|
|
|
|
set(SPU2nullWindowsHeaders
|
|
|
|
Windows/resource.h)
|
|
|
|
|
2014-08-04 16:42:40 +00:00
|
|
|
set(SPU2nullFinalSources
|
|
|
|
${SPU2nullSources}
|
|
|
|
${SPU2nullHeaders}
|
|
|
|
${SPU2nullLinuxSources}
|
|
|
|
${SPU2nullLinuxHeaders}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(SPU2nullFinalLibs
|
|
|
|
${GTK2_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
add_pcsx2_plugin(${Output} "${SPU2nullFinalSources}" "${SPU2nullFinalLibs}" "${SPU2nullFinalFlags}")
|