diff options
| author | Stelios Tsampas <loathingkernel@gmail.com> | 2017-07-31 17:09:40 +0300 |
|---|---|---|
| committer | Stelios Tsampas <loathingkernel@gmail.com> | 2017-07-31 17:09:40 +0300 |
| commit | a93c5c542042b582f2da765aa386772dc8437f01 (patch) | |
| tree | 9c34038ebc8f59106c6b1312e57b4f88f6088da1 /plugins | |
| parent | 3912ad309e60ca9e97a72baa9a2e651c6a5ab198 (diff) | |
| download | pcsxr-a93c5c542042b582f2da765aa386772dc8437f01.tar.gz | |
* 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.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/bladesio1/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | plugins/dfcdrom/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | plugins/dfinput/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | plugins/dfnet/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | plugins/dfsound/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | plugins/dfxvideo/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | plugins/nullsio1/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | plugins/peopsxgl/CMakeLists.txt | 3 |
8 files changed, 13 insertions, 12 deletions
diff --git a/plugins/bladesio1/CMakeLists.txt b/plugins/bladesio1/CMakeLists.txt index 1cd388da..7557f5db 100644 --- a/plugins/bladesio1/CMakeLists.txt +++ b/plugins/bladesio1/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring bladesio1") +message(STATUS "* Configuring bladesio1") include(GlibCompileResourcesSupport) diff --git a/plugins/dfcdrom/CMakeLists.txt b/plugins/dfcdrom/CMakeLists.txt index 447d6e7e..7860e414 100644 --- a/plugins/dfcdrom/CMakeLists.txt +++ b/plugins/dfcdrom/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring dfcdrom") +message(STATUS "* Configuring dfcdrom") include(GlibCompileResourcesSupport) diff --git a/plugins/dfinput/CMakeLists.txt b/plugins/dfinput/CMakeLists.txt index 7681a3d9..4899b85c 100644 --- a/plugins/dfinput/CMakeLists.txt +++ b/plugins/dfinput/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring dfinput") +message(STATUS "* Configuring dfinput") include(GlibCompileResourcesSupport) @@ -24,12 +24,12 @@ if(NOT SDL2_FOUND) if(NOT SDL_FOUND) message(FATAL_ERROR "SDL or SDL2 library not found") else(NOT SDL_FOUND) - message("Using SDL") + message(STATUS "Using SDL") include_directories(${SDL_INCLUDE_DIR}) endif(NOT SDL_FOUND) else(NOT SDL2_FOUND) set(USE_SDL2 1) - message("Using SDL2") + message(STATUS "Using SDL2") include_directories(${SDL2_INCLUDE_DIR}) endif(NOT SDL2_FOUND) diff --git a/plugins/dfnet/CMakeLists.txt b/plugins/dfnet/CMakeLists.txt index 9080b98c..b768a5f1 100644 --- a/plugins/dfnet/CMakeLists.txt +++ b/plugins/dfnet/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring dfnet") +message(STATUS "* Configuring dfnet") include(GlibCompileResourcesSupport) diff --git a/plugins/dfsound/CMakeLists.txt b/plugins/dfsound/CMakeLists.txt index 8674bd44..865ddc13 100644 --- a/plugins/dfsound/CMakeLists.txt +++ b/plugins/dfsound/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring dfsound") +message(STATUS "* Configuring dfsound") include(GlibCompileResourcesSupport) @@ -43,12 +43,12 @@ elseif (${SND_BACKEND} STREQUAL "sdl") if(NOT SDL_FOUND) message(FATAL_ERROR "SDL or SDL2 library not found") else(NOT SDL_FOUND) - message("Using SDL") + message(STATUS "Using SDL") include_directories(${SDL_INCLUDE_DIR}) endif(NOT SDL_FOUND) else(NOT SDL2_FOUND) set(USE_SDL2 1) - message("Using SDL2") + message(STATUS "Using SDL2") include_directories(${SDL2_INCLUDE_DIR}) endif(NOT SDL2_FOUND) add_definitions(-DUSESDL=1) diff --git a/plugins/dfxvideo/CMakeLists.txt b/plugins/dfxvideo/CMakeLists.txt index f67a4a48..8162d009 100644 --- a/plugins/dfxvideo/CMakeLists.txt +++ b/plugins/dfxvideo/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring dfxvideo") +message(STATUS "* Configuring dfxvideo") include(GlibCompileResourcesSupport) diff --git a/plugins/nullsio1/CMakeLists.txt b/plugins/nullsio1/CMakeLists.txt index 541f6dbd..b7eaf48a 100644 --- a/plugins/nullsio1/CMakeLists.txt +++ b/plugins/nullsio1/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring nullsio1") +message(STATUS "* Configuring nullsio1") #deps diff --git a/plugins/peopsxgl/CMakeLists.txt b/plugins/peopsxgl/CMakeLists.txt index 1985bb3f..d622ce6f 100644 --- a/plugins/peopsxgl/CMakeLists.txt +++ b/plugins/peopsxgl/CMakeLists.txt @@ -1,4 +1,4 @@ -message("Configuring peopsxgl") +message(STATUS "* Configuring peopsxgl") include(GlibCompileResourcesSupport) @@ -40,6 +40,7 @@ set(PLUGIN_SRCS prim.c soft.c texture.c + pgxp_gpu.c ) set(GUI_SRCS |
