comparison Core/Images/PngReader.h @ 2379:4900688827a8

reorganization in CMake
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 28 Aug 2017 18:07:03 +0200
parents a3a65de1840f
children 878b59270859
comparison
equal deleted inserted replaced
2378:116ade1eff82 2379:4900688827a8
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. 30 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 **/ 31 **/
32 32
33 33
34 #pragma once 34 #pragma once
35
36 #if !defined(ORTHANC_ENABLE_PNG)
37 # error The macro ORTHANC_ENABLE_PNG must be defined
38 #endif
39
40 #if ORTHANC_ENABLE_PNG != 1
41 # error PNG support must be enabled to include this file
42 #endif
35 43
36 #include "ImageAccessor.h" 44 #include "ImageAccessor.h"
37 45
38 #include "../Enumerations.h" 46 #include "../Enumerations.h"
39 47