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
|
2011-06-20 18:09:32 +00:00
|
|
|
set(Output dev9null-0.5.0)
|
2015-08-08 13:25:17 +00:00
|
|
|
set(dev9nullFinalFlags "")
|
2010-01-22 04:36:49 +00:00
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# dev9null sources
|
|
|
|
set(dev9nullSources
|
|
|
|
Config.cpp
|
|
|
|
DEV9.cpp)
|
2010-06-03 15:12:29 +00:00
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# dev9null headers
|
|
|
|
set(dev9nullHeaders
|
|
|
|
Config.h
|
|
|
|
DEV9.h)
|
|
|
|
|
|
|
|
# dev9null Linux sources
|
|
|
|
set(dev9nullLinuxSources
|
|
|
|
)
|
|
|
|
|
|
|
|
# dev9null Linux headers
|
|
|
|
set(dev9nullLinuxHeaders
|
|
|
|
)
|
|
|
|
|
|
|
|
# dev9null Windows sources
|
|
|
|
set(dev9nullWindowsSources
|
|
|
|
Windows/dev9null.def)
|
|
|
|
|
|
|
|
# dev9null Windows headers
|
|
|
|
set(dev9nullWindowsHeaders
|
|
|
|
)
|
|
|
|
|
2014-08-04 16:42:40 +00:00
|
|
|
set(dev9nullFinalSources
|
|
|
|
${dev9nullSources}
|
|
|
|
${dev9nullHeaders}
|
|
|
|
${dev9nullLinuxSources}
|
|
|
|
${dev9nullLinuxHeaders}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(dev9nullFinalLibs
|
|
|
|
${GTK2_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
add_pcsx2_plugin(${Output} "${dev9nullFinalSources}" "${dev9nullFinalLibs}" "${dev9nullFinalFlags}")
|