File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -125,10 +125,27 @@ endif ()
125
125
126
126
find_package (TIFF)
127
127
if (TIFF_FOUND)
128
- message ("libtiff found, building heif-enc with TIFF input support" )
129
128
target_link_libraries (heif-enc PRIVATE TIFF::TIFF)
130
129
target_sources (heif-enc PRIVATE decoder_tiff.cc decoder_tiff.h)
131
130
target_compile_definitions (heif-enc PUBLIC HAVE_LIBTIFF=1)
131
+ endif ()
132
+
133
+ message ("" )
134
+ message ("=== Active input formats for heif-enc ===" )
135
+ if (JPEG_FOUND)
136
+ message ("JPEG: active" )
137
+ else ()
138
+ message ("JPEG: ------ (libjpeg not found)" )
139
+ endif ()
140
+ if (PNG_FOUND)
141
+ message ("PNG: active" )
132
142
else ()
133
- message ("libtiff NOT found, building heif-enc without TIFF input support " )
143
+ message ("PNG: ------ (libpng not found) " )
134
144
endif ()
145
+ if (TIFF_FOUND)
146
+ message ("TIFF: active" )
147
+ else ()
148
+ message ("TIFF: ------ (libtiff not found)" )
149
+ endif ()
150
+ message ("" )
151
+
You can’t perform that action at this time.
0 commit comments