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:57:35 +0300
committerSoumith Chintala <soumith@gmail.com>2015-10-18 22:57:35 +0300
commit074806a63b637b1c7fe5a65aa9e227fb658c92ea (patch)
treee08db65f37de37fac25ab0d6f5ef3152dfe98ea1
parentc7eef085d9ffdbca894cd77a0d186ccd2ce13bd8 (diff)
removing 'quiet' for jpeg and png
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9033240..57ae2fe 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)
SET(src ppm.c)
ADD_TORCH_PACKAGE(ppm "${src}" "${luasrc}" "Image Processing")