summaryrefslogtreecommitdiff
path: root/plugins/nullsio1/CMakeLists.txt
diff options
context:
space:
mode:
authoriCatButler <i.am.catbutler@gmail.com>2018-03-19 07:39:08 +0000
committerGitHub <noreply@github.com>2018-03-19 07:39:08 +0000
commit6f76041029393c6823973a29426b28c8c2d0b064 (patch)
tree13c1bb5215c2510a7c430b59bc22df666cd2fbf3 /plugins/nullsio1/CMakeLists.txt
parent768332417644451d38ce1a737465656c7cc75de3 (diff)
parent128d6afb179756513860187cf5e31d84d6d8cac4 (diff)
Merge pull request #7 from loathingKernel/sync-with-codeplex
Sync with codeplex
Diffstat (limited to 'plugins/nullsio1/CMakeLists.txt')
-rw-r--r--plugins/nullsio1/CMakeLists.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/nullsio1/CMakeLists.txt b/plugins/nullsio1/CMakeLists.txt
new file mode 100644
index 00000000..b7eaf48a
--- /dev/null
+++ b/plugins/nullsio1/CMakeLists.txt
@@ -0,0 +1,21 @@
+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)