summaryrefslogtreecommitdiff
path: root/plugins/dfsound
diff options
context:
space:
mode:
authorStelios Tsampas <loathingkernel@gmail.com>2017-07-31 17:09:40 +0300
committerStelios Tsampas <loathingkernel@gmail.com>2017-07-31 17:09:40 +0300
commita93c5c542042b582f2da765aa386772dc8437f01 (patch)
tree9c34038ebc8f59106c6b1312e57b4f88f6088da1 /plugins/dfsound
parent3912ad309e60ca9e97a72baa9a2e651c6a5ab198 (diff)
downloadpcsxr-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/dfsound')
-rw-r--r--plugins/dfsound/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
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)