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")
|
|
|
|
endif(NOT TOP_CMAKE_WAS_SOURCED)
|
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
|
|
|
|
# plugin name
|
2011-06-20 18:09:32 +00:00
|
|
|
set(Output dev9null-0.5.0)
|
2010-01-21 15:12:50 +00:00
|
|
|
|
2010-06-03 15:12:29 +00:00
|
|
|
set(CommonFlags
|
2010-08-09 19:05:02 +00:00
|
|
|
-fvisibility=hidden
|
2010-06-03 15:12:29 +00:00
|
|
|
-Wall
|
|
|
|
)
|
|
|
|
|
|
|
|
set(OptimizationFlags
|
|
|
|
-O2
|
2010-06-05 11:56:52 +00:00
|
|
|
-DNDEBUG
|
2010-06-03 15:12:29 +00:00
|
|
|
)
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
# Debug - Build
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
|
|
# add defines
|
2010-06-03 15:12:29 +00:00
|
|
|
add_definitions(${CommonFlags} -g)
|
2010-01-22 04:36:49 +00:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
|
|
|
|
|
|
# Devel - Build
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
# add defines
|
2010-06-03 15:12:29 +00:00
|
|
|
add_definitions(${CommonFlags} ${OptimizationFlags})
|
2010-01-22 04:36:49 +00:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
|
|
|
|
# Release - Build
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
# add defines
|
2010-06-03 15:12:29 +00:00
|
|
|
add_definitions(${CommonFlags} ${OptimizationFlags})
|
2010-01-22 04:36:49 +00:00
|
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|
2010-01-22 04:36:49 +00:00
|
|
|
# additional include directories
|
|
|
|
include_directories(.)
|
|
|
|
|
2010-01-21 15:12:50 +00:00
|
|
|
# add library
|
2010-07-25 13:54:26 +00:00
|
|
|
add_library(${Output} SHARED
|
2010-01-21 15:12:50 +00:00
|
|
|
${dev9nullSources}
|
|
|
|
${dev9nullHeaders}
|
|
|
|
${dev9nullLinuxSources}
|
|
|
|
${dev9nullLinuxHeaders})
|
2010-06-03 15:12:29 +00:00
|
|
|
|
2012-04-16 15:36:16 +00:00
|
|
|
if(Linux)
|
|
|
|
# link target with gtk2
|
|
|
|
target_link_libraries(${Output} ${GTK2_LIBRARIES})
|
|
|
|
endif(Linux)
|
|
|
|
|
2010-07-25 14:20:03 +00:00
|
|
|
# User flags options
|
|
|
|
if(NOT USER_CMAKE_LD_FLAGS STREQUAL "")
|
|
|
|
target_link_libraries(${Output} "${USER_CMAKE_LD_FLAGS}")
|
|
|
|
endif(NOT USER_CMAKE_LD_FLAGS STREQUAL "")
|
2011-07-14 09:02:37 +00:00
|
|
|
|
|
|
|
if(PACKAGE_MODE)
|
2011-07-17 11:25:17 +00:00
|
|
|
install(TARGETS ${Output} DESTINATION ${PLUGIN_DIR})
|
2011-07-14 09:02:37 +00:00
|
|
|
else(PACKAGE_MODE)
|
|
|
|
install(TARGETS ${Output} DESTINATION ${CMAKE_SOURCE_DIR}/bin/plugins)
|
|
|
|
endif(PACKAGE_MODE)
|