mirror of https://github.com/PCSX2/pcsx2.git
89 lines
1.6 KiB
CMake
89 lines
1.6 KiB
CMake
# onepad Plugin
|
|
|
|
# plugin name
|
|
set(onepadName onepad)
|
|
|
|
# Debug - Build
|
|
if(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
# add defines
|
|
add_definitions(-Wall -fPIC -m32 -g)
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Debug)
|
|
|
|
# Devel - Build
|
|
if(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
# add defines
|
|
add_definitions(-Wall -fPIC -m32 -O2)
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Devel)
|
|
|
|
# Release - Build
|
|
if(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
# add defines
|
|
add_definitions(-Wall -fPIC -m32 -O2)
|
|
endif(CMAKE_BUILD_TYPE STREQUAL Release)
|
|
|
|
# onepad sources
|
|
set(onepadSources
|
|
analog.cpp
|
|
controller.cpp
|
|
joystick.cpp
|
|
keyboard.cpp
|
|
onepad.cpp)
|
|
|
|
# onepad headers
|
|
set(onepadHeaders
|
|
analog.h
|
|
bitwise.h
|
|
controller.h
|
|
joystick.h
|
|
keyboard.h
|
|
onepad.h)
|
|
|
|
# onepad Linux sources
|
|
set(onepadLinuxSources
|
|
# Linux/callbacks.c
|
|
Linux/gui.cpp
|
|
Linux/ini.cpp
|
|
Linux/interface.c
|
|
Linux/linux.cpp
|
|
Linux/support.c)
|
|
|
|
# onepad Linux headers
|
|
set(onepadLinuxHeaders
|
|
Linux/callbacks.h
|
|
Linux/interface.h
|
|
Linux/support.h)
|
|
|
|
# onepad Windows sources
|
|
set(onepadWindowsSources
|
|
)
|
|
|
|
# onepad Windows headers
|
|
set(onepadWindowsHeaders
|
|
)
|
|
|
|
# add additional include directories
|
|
include_directories(.)
|
|
|
|
# add library
|
|
add_library(${onepadName} SHARED
|
|
${onepadSources}
|
|
${onepadHeaders}
|
|
${onepadLinuxSources}
|
|
${onepadLinuxHeaders})
|
|
|
|
# Force the linker into 32 bits mode
|
|
target_link_libraries(${onepadName} -m32)
|
|
|
|
# Linker strip option
|
|
if (CMAKE_BUILD_STRIP)
|
|
target_link_libraries(${onepadName} -s)
|
|
endif (CMAKE_BUILD_STRIP)
|
|
|
|
# set output directory
|
|
set_target_properties(${onepadName} PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/bin/plugins)
|
|
|
|
# link target with SDL
|
|
target_link_libraries(${onepadName} ${SDL_LIBRARY})
|
|
|