pcsxr/plugins/nullsio1/CMakeLists.txt
Stelios Tsampas a93c5c5420 * Fix CMake to include PGXP sources. Import updated translations.
Includes some small fixes on CMake, such as prettier status messages,
    host and target arch detection (taken from PCSX2), and various other
    small errors.
2017-07-31 17:09:40 +03:00

22 lines
478 B
CMake

message(STATUS "* Configuring nullsio1")
#deps
#defs
add_definitions(-DLOCALE_DIR="${CMAKE_INSTALL_FULL_DATAROOTDIR}/locale/" -DPSEMU_DATA_DIR="${CMAKE_INSTALL_FULL_DATAROOTDIR}/psemu" -DDEF_PLUGIN_DIR="${CMAKE_INSTALL_FULL_LIBDIR}/games/psemu")
#sources
set(PLUGIN_SRCS
sio1.c
)
include_directories(${CMAKE_SOURCE_DIR}/libpcsxcore)
add_library(NullSio1 MODULE ${PLUGIN_SRCS})
install(TARGETS NullSio1 LIBRARY DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/games/psemu)