diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-21 08:22:00 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-22 00:26:52 +0100 |
commit | 361735e7fe1369d88752f1366f56c8a4ce8c7431 (patch) | |
tree | 96b27af79fd2f8442068e6de00da830cae769b7a | |
parent | CMake: Use improved optimization flags on MSVC (diff) | |
download | yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.tar yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.tar.gz yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.tar.bz2 yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.tar.lz yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.tar.xz yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.tar.zst yuzu-361735e7fe1369d88752f1366f56c8a4ce8c7431.zip |
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index af53bda71..1491df6e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,10 +33,12 @@ else() endif() add_definitions(-DSINGLETHREADED) -find_package(PNG) +find_package(PNG QUIET) if (PNG_FOUND) add_definitions(-DHAVE_PNG) -endif () +else() + message(STATUS "libpng not found. Some debugging features have been disabled.") +endif() find_package(Boost) if (Boost_FOUND) |