mirror of https://github.com/PCSX2/pcsx2.git
86 lines
1.8 KiB
CMake
86 lines
1.8 KiB
CMake
# 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)
|
|
|
|
|
|
# plugin name
|
|
set(Output FWnull)
|
|
|
|
set(CommonFlags
|
|
-fvisibility=hidden
|
|
-Wall
|
|
)
|
|
|
|
set(OptimizationFlags
|
|
-O2
|
|
)
|
|
|
|
# Debug - Build
|
|
if(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
# add defines
|
|
add_definitions(${CommonFlags} -g)
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
|
|
# Devel - Build
|
|
if(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
# add defines
|
|
add_definitions(${CommonFlags} ${OptimizationFlags})
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
# Release - Build
|
|
if(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
# add defines
|
|
add_definitions(${CommonFlags} ${OptimizationFlags})
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
# FWnull sources
|
|
set(FWnullSources
|
|
Config.cpp
|
|
FW.cpp)
|
|
|
|
# FWnull headers
|
|
set(FWnullHeaders
|
|
Config.h
|
|
FW.h)
|
|
|
|
# FWnull Linux sources
|
|
set(FWnullLinuxSources
|
|
)
|
|
|
|
# FWnull Linux headers
|
|
set(FWnullLinuxHeaders
|
|
)
|
|
|
|
# FWnull Windows sources
|
|
set(FWnullWindowsSources
|
|
Windows/Config.cpp
|
|
Windows/FireWireNull.def
|
|
Windows/FireWireNul.rc
|
|
Windows/Win32.cpp)
|
|
|
|
# FWnull Windows headers
|
|
set(FWnullWindowsHeaders
|
|
Windows/resource.h)
|
|
|
|
# add additional include directories
|
|
include_directories(.)
|
|
|
|
# add library
|
|
add_library(${Output} SHARED
|
|
${FWnullSources}
|
|
${FWnullHeaders}
|
|
${FWnullLinuxSources}
|
|
${FWnullLinuxHeaders})
|
|
|
|
# set output directory
|
|
set_target_properties(${Output} PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/bin/plugins)
|
|
|
|
# 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 "")
|