Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/image.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2015-10-18 22:58:33 +0300
committerSoumith Chintala <soumith@gmail.com>2015-10-18 22:58:33 +0300
commitf6ca5561278340a3a906cff76320d388cd66868e (patch)
treec37388f09994288981a3f57030d44fc2ed94f457
parent93cc9d1c30155238d8223df53bffab9b2c311855 (diff)
parent5fa8bc0a4eaaa77806a12f6631124a320b4907c2 (diff)
Merge pull request #116 from torch/quiet
Quiet detection removed in cmake for libjpeg and libpng
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 80abb16..0086cb1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,8 +2,8 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
CMAKE_POLICY(VERSION 2.6)
FIND_PACKAGE(Torch REQUIRED)
-FIND_PACKAGE(JPEG QUIET)
-FIND_PACKAGE(PNG QUIET)
+FIND_PACKAGE(JPEG)
+FIND_PACKAGE(PNG)
# OpenMP support?
SET(WITH_OPENMP ON CACHE BOOL "OpenMP support if available?")