summaryrefslogtreecommitdiffstats
path: root/src/cmake
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2015-10-04 05:15:50 (GMT)
committerTony Theodore <tonyt@logyst.com>2015-10-04 05:15:50 (GMT)
commit2bc137d4f67a694f1b0c0a6414edf503fff0b76e (patch)
treea550a135dc6d5ca20a70f5681b421c8e94ec24dc /src/cmake
parent485a79c6d48be2909550cdb22e5d2dc47eb44c3e (diff)
downloadmxe-2bc137d4f67a694f1b0c0a6414edf503fff0b76e.zip
mxe-2bc137d4f67a694f1b0c0a6414edf503fff0b76e.tar.gz
mxe-2bc137d4f67a694f1b0c0a6414edf503fff0b76e.tar.bz2
cmake modules: use less warning-like status messages
Diffstat (limited to 'src/cmake')
-rw-r--r--src/cmake/modules/FindFreetype.cmake2
-rw-r--r--src/cmake/modules/FindOpenSSL.cmake2
-rw-r--r--src/cmake/modules/FindSDL.cmake2
-rw-r--r--src/cmake/modules/FindSDL_image.cmake2
-rw-r--r--src/cmake/modules/FindSDL_mixer.cmake2
-rw-r--r--src/cmake/modules/FindSDL_net.cmake2
-rw-r--r--src/cmake/modules/FindSDL_sound.cmake2
-rw-r--r--src/cmake/modules/FindSDL_ttf.cmake2
-rw-r--r--src/cmake/modules/FindTIFF.cmake2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/cmake/modules/FindFreetype.cmake b/src/cmake/modules/FindFreetype.cmake
index 4ad01f6..e436662 100644
--- a/src/cmake/modules/FindFreetype.cmake
+++ b/src/cmake/modules/FindFreetype.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindOpenSSL.cmake b/src/cmake/modules/FindOpenSSL.cmake
index 9467682..3763d80 100644
--- a/src/cmake/modules/FindOpenSSL.cmake
+++ b/src/cmake/modules/FindOpenSSL.cmake
@@ -36,7 +36,7 @@
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if (UNIX)
find_package(PkgConfig QUIET)
diff --git a/src/cmake/modules/FindSDL.cmake b/src/cmake/modules/FindSDL.cmake
index 59b1576..791b4af 100644
--- a/src/cmake/modules/FindSDL.cmake
+++ b/src/cmake/modules/FindSDL.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindSDL_image.cmake b/src/cmake/modules/FindSDL_image.cmake
index 9896a18..27b6342 100644
--- a/src/cmake/modules/FindSDL_image.cmake
+++ b/src/cmake/modules/FindSDL_image.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindSDL_mixer.cmake b/src/cmake/modules/FindSDL_mixer.cmake
index c3390e9..c80d2da 100644
--- a/src/cmake/modules/FindSDL_mixer.cmake
+++ b/src/cmake/modules/FindSDL_mixer.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindSDL_net.cmake b/src/cmake/modules/FindSDL_net.cmake
index 9fe28f0..e4be76e 100644
--- a/src/cmake/modules/FindSDL_net.cmake
+++ b/src/cmake/modules/FindSDL_net.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindSDL_sound.cmake b/src/cmake/modules/FindSDL_sound.cmake
index 9634ffb..0c6d765 100644
--- a/src/cmake/modules/FindSDL_sound.cmake
+++ b/src/cmake/modules/FindSDL_sound.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindSDL_ttf.cmake b/src/cmake/modules/FindSDL_ttf.cmake
index fca8a17..12362f4 100644
--- a/src/cmake/modules/FindSDL_ttf.cmake
+++ b/src/cmake/modules/FindSDL_ttf.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)
diff --git a/src/cmake/modules/FindTIFF.cmake b/src/cmake/modules/FindTIFF.cmake
index 2f75667..6dab2b4 100644
--- a/src/cmake/modules/FindTIFF.cmake
+++ b/src/cmake/modules/FindTIFF.cmake
@@ -1,7 +1,7 @@
# This file is part of MXE.
# See index.html for further information.
-message("** Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
+message("== Custom MXE File: " ${CMAKE_CURRENT_LIST_FILE})
if(NOT PKG_CONFIG_FOUND)
find_package(PkgConfig REQUIRED)