diff options
author | Tony Theodore <tonyt@logyst.com> | 2015-10-04 05:15:50 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2015-10-04 05:15:50 (GMT) |
commit | 2bc137d4f67a694f1b0c0a6414edf503fff0b76e (patch) | |
tree | a550a135dc6d5ca20a70f5681b421c8e94ec24dc /src | |
parent | 485a79c6d48be2909550cdb22e5d2dc47eb44c3e (diff) | |
download | mxe-2bc137d4f67a694f1b0c0a6414edf503fff0b76e.zip mxe-2bc137d4f67a694f1b0c0a6414edf503fff0b76e.tar.gz mxe-2bc137d4f67a694f1b0c0a6414edf503fff0b76e.tar.bz2 |
cmake modules: use less warning-like status messages
Diffstat (limited to 'src')
-rw-r--r-- | src/cmake/modules/FindFreetype.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindOpenSSL.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindSDL.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindSDL_image.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindSDL_mixer.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindSDL_net.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindSDL_sound.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindSDL_ttf.cmake | 2 | ||||
-rw-r--r-- | src/cmake/modules/FindTIFF.cmake | 2 | ||||
-rw-r--r-- | src/mxe-conf.mk | 1 |
10 files changed, 10 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) diff --git a/src/mxe-conf.mk b/src/mxe-conf.mk index aaf31e2..5a0fd6b 100644 --- a/src/mxe-conf.mk +++ b/src/mxe-conf.mk @@ -47,6 +47,7 @@ define $(PKG)_BUILD_COMMON #create prefixed cmake wrapper script (echo '#!/bin/sh'; \ + echo 'echo "== Using MXE toolchain: $(CMAKE_TOOLCHAIN_FILE)"'; \ echo 'exec cmake -DCMAKE_TOOLCHAIN_FILE="$(CMAKE_TOOLCHAIN_FILE)" "$$@"') \ > '$(PREFIX)/bin/$(TARGET)-cmake' chmod 0755 '$(PREFIX)/bin/$(TARGET)-cmake' |