DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 1 | # |
| 2 | # Setup |
| 3 | # |
| 4 | |
| 5 | cmake_minimum_required(VERSION 2.6) |
| 6 | |
| 7 | project(libjpeg-turbo) |
DRC | 3a60624 | 2010-10-18 08:27:04 +0000 | [diff] [blame] | 8 | set(VERSION 1.0.90) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 9 | |
DRC | 378da4d | 2010-10-15 19:11:11 +0000 | [diff] [blame] | 10 | if(MINGW OR CYGWIN) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 11 | execute_process(COMMAND "date" "+%Y%m%d" OUTPUT_VARIABLE BUILD) |
| 12 | string(REGEX REPLACE "\n" "" BUILD ${BUILD}) |
| 13 | elseif(WIN32) |
| 14 | execute_process(COMMAND "${CMAKE_SOURCE_DIR}/cmakescripts/getdate.bat" |
| 15 | OUTPUT_VARIABLE BUILD) |
| 16 | string(REGEX REPLACE "\n" "" BUILD ${BUILD}) |
| 17 | else() |
DRC | 378da4d | 2010-10-15 19:11:11 +0000 | [diff] [blame] | 18 | message(FATAL_ERROR "Platform not supported by this build system. Use autotools instead.") |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 19 | endif() |
| 20 | |
| 21 | if(NOT CMAKE_BUILD_TYPE) |
| 22 | set(CMAKE_BUILD_TYPE Release) |
| 23 | endif() |
| 24 | |
| 25 | message(STATUS "CMAKE_BUILD_TYPE = ${CMAKE_BUILD_TYPE}") |
| 26 | |
| 27 | # This only works if building from the command line. There is currently no way |
| 28 | # to set a variable's value based on the build type when using the MSVC IDE. |
| 29 | if(CMAKE_BUILD_TYPE STREQUAL "Debug") |
| 30 | set(BUILD "${BUILD}d") |
| 31 | endif() |
| 32 | |
DRC | eb2b9d6 | 2010-10-15 04:55:13 +0000 | [diff] [blame] | 33 | message(STATUS "VERSION = ${VERSION}, BUILD = ${BUILD}") |
| 34 | |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 35 | if(NOT DEFINED WITH_SIMD) |
| 36 | set(WITH_SIMD 1) |
| 37 | endif() |
| 38 | |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 39 | if(NOT DEFINED WITH_ARITH_ENC) |
| 40 | set(WITH_ARITH_ENC 1) |
| 41 | endif() |
| 42 | |
| 43 | if(NOT DEFINED WITH_ARITH_DEC) |
| 44 | set(WITH_ARITH_DEC 1) |
| 45 | endif() |
| 46 | |
| 47 | if(WITH_ARITH_ENC) |
| 48 | set(C_ARITH_CODING_SUPPORTED 1) |
DRC | 990e28d | 2011-01-04 21:40:11 +0000 | [diff] [blame] | 49 | message(STATUS "Arithmetic encoding support enabled") |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 50 | else() |
DRC | 990e28d | 2011-01-04 21:40:11 +0000 | [diff] [blame] | 51 | message(STATUS "Arithmetic encoding support disabled") |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 52 | endif() |
| 53 | |
| 54 | if(WITH_ARITH_DEC) |
| 55 | set(D_ARITH_CODING_SUPPORTED 1) |
DRC | 990e28d | 2011-01-04 21:40:11 +0000 | [diff] [blame] | 56 | message(STATUS "Arithmetic decoding support enabled") |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 57 | else() |
DRC | 990e28d | 2011-01-04 21:40:11 +0000 | [diff] [blame] | 58 | message(STATUS "Arithmetic decoding support disabled") |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 59 | endif() |
| 60 | |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 61 | set(JPEG_LIB_VERSION 62) |
| 62 | set(DLL_VERSION ${JPEG_LIB_VERSION}) |
DRC | a9d5b25 | 2010-10-15 06:42:45 +0000 | [diff] [blame] | 63 | set(FULLVERSION ${DLL_VERSION}.0.0) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 64 | if(WITH_JPEG8) |
| 65 | set(JPEG_LIB_VERSION 80) |
| 66 | set(DLL_VERSION 8) |
DRC | a9d5b25 | 2010-10-15 06:42:45 +0000 | [diff] [blame] | 67 | set(FULLVERSION ${DLL_VERSION}.0.2) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 68 | message(STATUS "Emulating libjpeg v8b API/ABI") |
| 69 | elseif(WITH_JPEG7) |
| 70 | set(JPEG_LIB_VERSION 70) |
| 71 | set(DLL_VERSION 7) |
DRC | a9d5b25 | 2010-10-15 06:42:45 +0000 | [diff] [blame] | 72 | set(FULLVERSION ${DLL_VERSION}.0.0) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 73 | message(STATUS "Emulating libjpeg v7 API/ABI") |
| 74 | endif(WITH_JPEG8) |
| 75 | |
| 76 | if(MSVC) |
| 77 | # Use the static C library for all build types |
| 78 | foreach(var CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE |
| 79 | CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO |
| 80 | CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE |
| 81 | CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) |
| 82 | if(${var} MATCHES "/MD") |
| 83 | string(REGEX REPLACE "/MD" "/MT" ${var} "${${var}}") |
| 84 | endif() |
| 85 | endforeach() |
| 86 | |
| 87 | add_definitions(-W3 -wd4996) |
| 88 | endif() |
| 89 | |
| 90 | # Detect whether compiler is 64-bit |
| 91 | if(MSVC AND CMAKE_CL_64) |
| 92 | set(SIMD_X86_64 1) |
| 93 | set(64BIT 1) |
| 94 | elseif(CMAKE_SIZEOF_VOID_P MATCHES 8) |
| 95 | set(SIMD_X86_64 1) |
| 96 | set(64BIT 1) |
| 97 | endif() |
| 98 | |
| 99 | if(64BIT) |
| 100 | message(STATUS "64-bit build") |
| 101 | else() |
| 102 | message(STATUS "32-bit build") |
| 103 | endif() |
| 104 | |
| 105 | configure_file(win/jconfig.h.in jconfig.h) |
| 106 | configure_file(win/config.h.in config.h) |
| 107 | |
| 108 | include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}) |
| 109 | |
| 110 | |
| 111 | # |
| 112 | # Targets |
| 113 | # |
| 114 | |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 115 | set(JPEG_SOURCES jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c |
| 116 | jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c jcphuff.c |
| 117 | jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c jdatadst.c jdatasrc.c |
| 118 | jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c |
| 119 | jdmaster.c jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c |
| 120 | jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c |
| 121 | jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c) |
| 122 | |
| 123 | if(WITH_ARITH_ENC OR WITH_ARITH_DEC) |
| 124 | set(JPEG_SOURCES ${JPEG_SOURCES} jaricom.c) |
| 125 | endif() |
| 126 | |
| 127 | if(WITH_ARITH_ENC) |
| 128 | set(JPEG_SOURCES ${JPEG_SOURCES} jcarith.c) |
| 129 | endif() |
| 130 | |
| 131 | if(WITH_ARITH_DEC) |
| 132 | set(JPEG_SOURCES ${JPEG_SOURCES} jdarith.c) |
| 133 | endif() |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 134 | |
| 135 | if(WITH_SIMD) |
| 136 | add_definitions(-DWITH_SIMD) |
| 137 | add_subdirectory(simd) |
| 138 | if(SIMD_X86_64) |
| 139 | set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_x86_64.c) |
| 140 | else() |
| 141 | set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_i386.c) |
| 142 | endif() |
| 143 | # This tells CMake that the "source" files haven't been generated yet |
| 144 | set_source_files_properties(${SIMD_OBJS} PROPERTIES GENERATED 1) |
| 145 | else() |
| 146 | set(JPEG_SOURCES ${JPEG_SOURCES} jsimd_none.c) |
DRC | 6f4ba61 | 2010-10-16 21:27:38 +0000 | [diff] [blame] | 147 | message(STATUS "Not using SIMD acceleration") |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 148 | endif() |
| 149 | |
| 150 | add_subdirectory(sharedlib) |
| 151 | |
| 152 | add_library(jpeg-static STATIC ${JPEG_SOURCES} ${SIMD_OBJS}) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 153 | if(NOT MSVC) |
| 154 | set_target_properties(jpeg-static PROPERTIES OUTPUT_NAME jpeg) |
| 155 | endif() |
| 156 | if(WITH_SIMD) |
| 157 | add_dependencies(jpeg-static simd) |
| 158 | endif() |
| 159 | |
| 160 | add_library(turbojpeg SHARED turbojpegl.c) |
| 161 | set_target_properties(turbojpeg PROPERTIES DEFINE_SYMBOL DLLDEFINE) |
| 162 | target_link_libraries(turbojpeg jpeg-static) |
| 163 | set_target_properties(turbojpeg PROPERTIES LINK_INTERFACE_LIBRARIES "") |
| 164 | |
| 165 | add_library(turbojpeg-static STATIC ${JPEG_SOURCES} ${SIMD_OBJS} |
| 166 | turbojpegl.c) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 167 | if(NOT MSVC) |
| 168 | set_target_properties(turbojpeg-static PROPERTIES OUTPUT_NAME turbojpeg) |
| 169 | endif() |
| 170 | if(WITH_SIMD) |
| 171 | add_dependencies(turbojpeg-static simd) |
| 172 | endif() |
| 173 | |
| 174 | add_executable(jpegut jpegut.c) |
| 175 | target_link_libraries(jpegut turbojpeg) |
| 176 | |
| 177 | add_executable(jpegut-static jpegut.c) |
| 178 | target_link_libraries(jpegut-static turbojpeg-static) |
| 179 | |
| 180 | add_executable(jpgtest jpgtest.cxx bmp.c) |
| 181 | target_link_libraries(jpgtest turbojpeg) |
| 182 | |
| 183 | add_executable(jpgtest-static jpgtest.cxx bmp.c) |
| 184 | target_link_libraries(jpgtest-static turbojpeg-static) |
| 185 | |
| 186 | add_executable(cjpeg-static cjpeg.c cdjpeg.c rdbmp.c rdgif.c rdppm.c rdswitch.c |
| 187 | rdtarga.c) |
| 188 | set_property(TARGET cjpeg-static PROPERTY COMPILE_FLAGS |
| 189 | "-DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED -DTARGA_SUPPORTED") |
| 190 | target_link_libraries(cjpeg-static jpeg-static) |
| 191 | |
| 192 | add_executable(djpeg-static djpeg.c cdjpeg.c rdcolmap.c rdswitch.c wrbmp.c wrgif.c |
| 193 | wrppm.c wrtarga.c) |
| 194 | set_property(TARGET djpeg-static PROPERTY COMPILE_FLAGS |
| 195 | "-DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED -DTARGA_SUPPORTED") |
| 196 | target_link_libraries(djpeg-static jpeg-static) |
| 197 | |
| 198 | add_executable(jpegtran-static jpegtran.c cdjpeg.c rdswitch.c transupp.c) |
| 199 | target_link_libraries(jpegtran-static jpeg-static) |
| 200 | |
| 201 | add_executable(rdjpgcom rdjpgcom.c) |
| 202 | |
| 203 | add_executable(wrjpgcom rdjpgcom.c) |
| 204 | |
| 205 | |
| 206 | # |
| 207 | # Tests |
| 208 | # |
| 209 | |
| 210 | enable_testing() |
| 211 | add_test(jpegut jpegut) |
DRC | fbb6747 | 2010-11-24 04:02:37 +0000 | [diff] [blame] | 212 | add_test(jpegut-yuv jpegut -yuv) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 213 | add_test(cjpeg-int sharedlib/cjpeg -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 214 | add_test(cjpeg-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutint.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 215 | add_test(cjpeg-fast sharedlib/cjpeg -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 216 | add_test(cjpeg-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.jpg testoutfst.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 217 | add_test(cjpeg-float sharedlib/cjpeg -dct float -outfile testoutflt.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
| 218 | if(WITH_SIMD) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 219 | add_test(cjpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.jpg testoutflt.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 220 | else() |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 221 | add_test(cjpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt-nosimd.jpg testoutflt.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 222 | endif() |
| 223 | add_test(djpeg-int sharedlib/djpeg -dct int -fast -ppm -outfile testoutint.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 224 | add_test(djpeg-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.ppm testoutint.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 225 | add_test(djpeg-fast sharedlib/djpeg -dct fast -ppm -outfile testoutfst.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 226 | add_test(djpeg-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.ppm testoutfst.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 227 | add_test(djpeg-float sharedlib/djpeg -dct float -ppm -outfile testoutflt.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg) |
| 228 | if(WITH_SIMD) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 229 | add_test(djpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.ppm testoutflt.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 230 | else() |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 231 | add_test(djpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testorig.ppm testoutflt.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 232 | endif() |
| 233 | add_test(djpeg-256 sharedlib/djpeg -dct int -bmp -colors 256 -outfile testout.bmp ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 234 | add_test(djpeg-256-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimg.bmp testout.bmp) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 235 | add_test(cjpeg-prog sharedlib/cjpeg -dct int -progressive -outfile testoutp.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 236 | add_test(cjpeg-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgp.jpg testoutp.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 237 | add_test(jpegtran-prog sharedlib/jpegtran -outfile testoutt.jpg testoutp.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 238 | add_test(jpegtran-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutt.jpg) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 239 | if(WITH_ARITH_ENC) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 240 | add_test(cjpeg-ari sharedlib/cjpeg -dct int -arithmetic -outfile testoutari.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
| 241 | add_test(cjpeg-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testoutari.jpg) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 242 | add_test(jpegtran-toari sharedlib/jpegtran -arithmetic -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgint.jpg) |
| 243 | add_test(jpegtran-toari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testouta.jpg) |
| 244 | endif() |
| 245 | if(WITH_ARITH_DEC) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 246 | add_test(djpeg-ari sharedlib/djpeg -dct int -fast -ppm -outfile testoutari.ppm ${CMAKE_SOURCE_DIR}/testimgari.jpg) |
| 247 | add_test(djpeg-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.ppm testoutari.ppm) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 248 | add_test(jpegtran-fromari sharedlib/jpegtran -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgari.jpg) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 249 | add_test(jpegtran-fromari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testouta.jpg) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 250 | endif() |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 251 | add_test(jpegtran-crop sharedlib/jpegtran -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 252 | add_test(jpegtran-crop-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgcrop.jpg testoutcrop.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 253 | |
| 254 | add_test(jpegut-static jpegut-static) |
DRC | fbb6747 | 2010-11-24 04:02:37 +0000 | [diff] [blame] | 255 | add_test(jpegut-static-yuv jpegut-static -yuv) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 256 | add_test(cjpeg-static-int cjpeg-static -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 257 | add_test(cjpeg-static-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutint.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 258 | add_test(cjpeg-static-fast cjpeg-static -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 259 | add_test(cjpeg-static-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.jpg testoutfst.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 260 | add_test(cjpeg-static-float cjpeg-static -dct float -outfile testoutflt.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
| 261 | if(WITH_SIMD) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 262 | add_test(cjpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.jpg testoutflt.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 263 | else() |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 264 | add_test(cjpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt-nosimd.jpg testoutflt.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 265 | endif() |
| 266 | add_test(djpeg-static-int djpeg-static -dct int -fast -ppm -outfile testoutint.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 267 | add_test(djpeg-static-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.ppm testoutint.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 268 | add_test(djpeg-static-fast djpeg-static -dct fast -ppm -outfile testoutfst.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 269 | add_test(djpeg-static-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.ppm testoutfst.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 270 | add_test(djpeg-static-float djpeg-static -dct float -ppm -outfile testoutflt.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg) |
| 271 | if(WITH_SIMD) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 272 | add_test(djpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.ppm testoutflt.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 273 | else() |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 274 | add_test(djpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testorig.ppm testoutflt.ppm) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 275 | endif() |
| 276 | add_test(djpeg-static-256 djpeg-static -dct int -bmp -colors 256 -outfile testout.bmp ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 277 | add_test(djpeg-static-256-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimg.bmp testout.bmp) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 278 | add_test(cjpeg-static-prog cjpeg-static -dct int -progressive -outfile testoutp.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 279 | add_test(cjpeg-static-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgp.jpg testoutp.jpg) |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 280 | add_test(jpegtran-static-prog jpegtran-static -outfile testoutt.jpg testoutp.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 281 | add_test(jpegtran-static-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutt.jpg) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 282 | if(WITH_ARITH_ENC) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 283 | add_test(cjpeg-static-ari cjpeg-static -dct int -arithmetic -outfile testoutari.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm) |
| 284 | add_test(cjpeg-static-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testoutari.jpg) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 285 | add_test(jpegtran-static-toari jpegtran-static -arithmetic -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgint.jpg) |
| 286 | add_test(jpegtran-static-toari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testouta.jpg) |
| 287 | endif() |
| 288 | if(WITH_ARITH_DEC) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 289 | add_test(djpeg-static-ari djpeg-static -dct int -fast -ppm -outfile testoutari.ppm ${CMAKE_SOURCE_DIR}/testimgari.jpg) |
| 290 | add_test(djpeg-static-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.ppm testoutari.ppm) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 291 | add_test(jpegtran-static-fromari jpegtran-static -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgari.jpg) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 292 | add_test(jpegtran-static-fromari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testouta.jpg) |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 293 | endif() |
DRC | 8469703 | 2010-10-15 03:43:24 +0000 | [diff] [blame] | 294 | add_test(jpegtran-static-crop jpegtran-static -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg ${CMAKE_SOURCE_DIR}/testorig.jpg) |
DRC | b42a48c | 2010-10-18 01:06:36 +0000 | [diff] [blame] | 295 | add_test(jpegtran-static-crop-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgcrop.jpg testoutcrop.jpg) |
DRC | 2c0a4e1 | 2010-10-16 08:51:43 +0000 | [diff] [blame] | 296 | |
| 297 | |
| 298 | # |
| 299 | # Installer |
| 300 | # |
| 301 | |
| 302 | set(INST_NAME ${CMAKE_PROJECT_NAME}) |
| 303 | |
| 304 | if(MSVC) |
| 305 | set(INST_PLATFORM "Visual C++") |
| 306 | elseif(MINGW) |
| 307 | set(INST_PLATFORM GCC) |
| 308 | set(INST_NAME ${INST_NAME}-gcc) |
| 309 | set(INST_DEFS -DGCC) |
| 310 | endif() |
| 311 | |
| 312 | if(64BIT) |
| 313 | set(INST_PLATFORM "${INST_PLATFORM} 64-bit") |
| 314 | set(INST_NAME ${INST_NAME}64) |
| 315 | set(INST_DEFS ${INST_DEFS} -DWIN64) |
| 316 | endif() |
| 317 | |
| 318 | if(MSVC_IDE) |
| 319 | set(INST_DEFS ${INST_DEFS} "-DBUILDDIR=$(OutDir)\\") |
| 320 | else() |
| 321 | set(INST_DEFS ${INST_DEFS} "-DBUILDDIR=") |
| 322 | endif() |
| 323 | |
| 324 | configure_file(release/libjpeg-turbo.nsi.in libjpeg-turbo.nsi @ONLY) |
| 325 | |
| 326 | add_custom_target(installer |
| 327 | makensis -nocd ${INST_DEFS} libjpeg-turbo.nsi |
| 328 | DEPENDS jpeg jpeg-static turbojpeg turbojpeg-static |
| 329 | SOURCES libjpeg-turbo.nsi) |
DRC | 7284c9a | 2010-10-16 21:55:14 +0000 | [diff] [blame] | 330 | |
| 331 | install(TARGETS jpeg-static turbojpeg turbojpeg-static rdjpgcom wrjpgcom |
| 332 | ARCHIVE DESTINATION lib |
| 333 | LIBRARY DESTINATION lib |
| 334 | RUNTIME DESTINATION bin |
| 335 | ) |
| 336 | |
| 337 | install(FILES ${CMAKE_SOURCE_DIR}/LGPL.txt ${CMAKE_SOURCE_DIR}/LICENSE.txt |
| 338 | ${CMAKE_SOURCE_DIR}/README ${CMAKE_SOURCE_DIR}/README-turbo.txt |
| 339 | ${CMAKE_SOURCE_DIR}/libjpeg.txt ${CMAKE_SOURCE_DIR}/usage.txt |
| 340 | DESTINATION doc) |
DRC | e2befde | 2010-10-17 07:28:08 +0000 | [diff] [blame] | 341 | |
| 342 | install(FILES ${CMAKE_BINARY_DIR}/jconfig.h ${CMAKE_SOURCE_DIR}/jerror.h |
| 343 | ${CMAKE_SOURCE_DIR}/jmorecfg.h ${CMAKE_SOURCE_DIR}/jpeglib.h |
| 344 | ${CMAKE_SOURCE_DIR}/turbojpeg.h DESTINATION include) |