2010-10-15 07:43:24 +04:00
|
|
|
#
|
|
|
|
# Setup
|
|
|
|
#
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
2011-02-19 02:08:58 +03:00
|
|
|
project(libjpeg-turbo C)
|
2011-02-06 19:11:41 +03:00
|
|
|
set(VERSION 1.1.90)
|
2010-10-15 07:43:24 +04:00
|
|
|
|
2010-10-15 23:11:11 +04:00
|
|
|
if(MINGW OR CYGWIN)
|
2010-10-15 07:43:24 +04:00
|
|
|
execute_process(COMMAND "date" "+%Y%m%d" OUTPUT_VARIABLE BUILD)
|
|
|
|
string(REGEX REPLACE "\n" "" BUILD ${BUILD})
|
|
|
|
elseif(WIN32)
|
|
|
|
execute_process(COMMAND "${CMAKE_SOURCE_DIR}/cmakescripts/getdate.bat"
|
|
|
|
OUTPUT_VARIABLE BUILD)
|
|
|
|
string(REGEX REPLACE "\n" "" BUILD ${BUILD})
|
|
|
|
else()
|
2010-10-15 23:11:11 +04:00
|
|
|
message(FATAL_ERROR "Platform not supported by this build system. Use autotools instead.")
|
2010-10-15 07:43:24 +04:00
|
|
|
endif()
|
|
|
|
|
2011-04-04 08:56:24 +04:00
|
|
|
# This does nothing except when using MinGW. CMAKE_BUILD_TYPE has no meaning
|
|
|
|
# in Visual Studio, and it always defaults to Debug when using NMake.
|
2010-10-15 07:43:24 +04:00
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "CMAKE_BUILD_TYPE = ${CMAKE_BUILD_TYPE}")
|
|
|
|
|
|
|
|
# This only works if building from the command line. There is currently no way
|
2011-04-04 08:56:24 +04:00
|
|
|
# to set a variable's value based on the build type when using Visual Studio.
|
2010-10-15 07:43:24 +04:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
set(BUILD "${BUILD}d")
|
|
|
|
endif()
|
|
|
|
|
2010-10-15 08:55:13 +04:00
|
|
|
message(STATUS "VERSION = ${VERSION}, BUILD = ${BUILD}")
|
|
|
|
|
2011-04-15 04:24:02 +04:00
|
|
|
option(WITH_SIMD "Include SIMD extensions" TRUE)
|
|
|
|
option(WITH_ARITH_ENC "Include arithmetic encoding support" TRUE)
|
|
|
|
option(WITH_ARITH_DEC "Include arithmetic decoding support" TRUE)
|
|
|
|
option(WITH_JPEG7 "Emulate libjpeg v7 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b)" FALSE)
|
|
|
|
option(WITH_JPEG8 "Emulate libjpeg v8 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b)" FALSE)
|
|
|
|
option(WITH_JAVA "Build Java wrapper for the TurboJPEG/OSS library" FALSE)
|
2010-11-23 20:11:06 +03:00
|
|
|
|
|
|
|
if(WITH_ARITH_ENC)
|
|
|
|
set(C_ARITH_CODING_SUPPORTED 1)
|
2011-01-05 00:40:11 +03:00
|
|
|
message(STATUS "Arithmetic encoding support enabled")
|
2010-11-23 20:11:06 +03:00
|
|
|
else()
|
2011-01-05 00:40:11 +03:00
|
|
|
message(STATUS "Arithmetic encoding support disabled")
|
2010-11-23 20:11:06 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_ARITH_DEC)
|
|
|
|
set(D_ARITH_CODING_SUPPORTED 1)
|
2011-01-05 00:40:11 +03:00
|
|
|
message(STATUS "Arithmetic decoding support enabled")
|
2010-11-23 20:11:06 +03:00
|
|
|
else()
|
2011-01-05 00:40:11 +03:00
|
|
|
message(STATUS "Arithmetic decoding support disabled")
|
2010-11-23 20:11:06 +03:00
|
|
|
endif()
|
|
|
|
|
2011-04-01 15:13:11 +04:00
|
|
|
if(WITH_JAVA)
|
|
|
|
message(STATUS "TurboJPEG/OSS Java wrapper enabled")
|
2011-02-05 09:01:18 +03:00
|
|
|
else()
|
2011-04-01 15:13:11 +04:00
|
|
|
message(STATUS "TurboJPEG/OSS Java wrapper disabled")
|
2011-02-05 09:01:18 +03:00
|
|
|
endif()
|
|
|
|
|
2010-10-15 07:43:24 +04:00
|
|
|
set(JPEG_LIB_VERSION 62)
|
|
|
|
set(DLL_VERSION ${JPEG_LIB_VERSION})
|
2010-10-15 10:42:45 +04:00
|
|
|
set(FULLVERSION ${DLL_VERSION}.0.0)
|
2010-10-15 07:43:24 +04:00
|
|
|
if(WITH_JPEG8)
|
|
|
|
set(JPEG_LIB_VERSION 80)
|
|
|
|
set(DLL_VERSION 8)
|
2010-10-15 10:42:45 +04:00
|
|
|
set(FULLVERSION ${DLL_VERSION}.0.2)
|
2011-02-18 10:00:38 +03:00
|
|
|
message(STATUS "Emulating libjpeg v8 API/ABI")
|
2010-10-15 07:43:24 +04:00
|
|
|
elseif(WITH_JPEG7)
|
|
|
|
set(JPEG_LIB_VERSION 70)
|
|
|
|
set(DLL_VERSION 7)
|
2010-10-15 10:42:45 +04:00
|
|
|
set(FULLVERSION ${DLL_VERSION}.0.0)
|
2010-10-15 07:43:24 +04:00
|
|
|
message(STATUS "Emulating libjpeg v7 API/ABI")
|
|
|
|
endif(WITH_JPEG8)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
# Use the static C library for all build types
|
|
|
|
foreach(var CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE
|
2011-02-08 04:18:37 +03:00
|
|
|
CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO)
|
2010-10-15 07:43:24 +04:00
|
|
|
if(${var} MATCHES "/MD")
|
|
|
|
string(REGEX REPLACE "/MD" "/MT" ${var} "${${var}}")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
add_definitions(-W3 -wd4996)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Detect whether compiler is 64-bit
|
|
|
|
if(MSVC AND CMAKE_CL_64)
|
|
|
|
set(SIMD_X86_64 1)
|
|
|
|
set(64BIT 1)
|
|
|
|
elseif(CMAKE_SIZEOF_VOID_P MATCHES 8)
|
|
|
|
set(SIMD_X86_64 1)
|
|
|
|
set(64BIT 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(64BIT)
|
|
|
|
message(STATUS "64-bit build")
|
|
|
|
else()
|
|
|
|
message(STATUS "32-bit build")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
configure_file(win/jconfig.h.in jconfig.h)
|
|
|
|
configure_file(win/config.h.in config.h)
|
|
|
|
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR})
|
|
|
|
|
2011-04-01 15:13:11 +04:00
|
|
|
if(WITH_JAVA)
|
|
|
|
find_package(Java)
|
|
|
|
find_package(JNI)
|
2011-04-03 10:10:18 +04:00
|
|
|
if(DEFINED JAVACFLAGS)
|
|
|
|
message(STATUS "Java compiler flags = ${JAVACFLAGS}")
|
|
|
|
endif()
|
2011-02-05 09:01:18 +03:00
|
|
|
endif()
|
|
|
|
|
2010-10-15 07:43:24 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Targets
|
|
|
|
#
|
|
|
|
|
2010-11-23 20:11:06 +03:00
|
|
|
set(JPEG_SOURCES jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c
|
|
|
|
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c jcphuff.c
|
|
|
|
jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c jdatadst.c jdatasrc.c
|
|
|
|
jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c
|
|
|
|
jdmaster.c jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c
|
|
|
|
jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c
|
|
|
|
jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c)
|
|
|
|
|
|
|
|
if(WITH_ARITH_ENC OR WITH_ARITH_DEC)
|
|
|
|
set(JPEG_SOURCES ${JPEG_SOURCES} jaricom.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_ARITH_ENC)
|
|
|
|
set(JPEG_SOURCES ${JPEG_SOURCES} jcarith.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_ARITH_DEC)
|
|
|
|
set(JPEG_SOURCES ${JPEG_SOURCES} jdarith.c)
|
|
|
|
endif()
|
2010-10-15 07:43:24 +04:00
|
|
|
|
|
|
|
if(WITH_SIMD)
|
|
|
|
add_definitions(-DWITH_SIMD)
|
|
|
|
add_subdirectory(simd)
|
|
|
|
if(SIMD_X86_64)
|
|
|
|
set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_x86_64.c)
|
|
|
|
else()
|
|
|
|
set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_i386.c)
|
|
|
|
endif()
|
|
|
|
# This tells CMake that the "source" files haven't been generated yet
|
|
|
|
set_source_files_properties(${SIMD_OBJS} PROPERTIES GENERATED 1)
|
|
|
|
else()
|
|
|
|
set(JPEG_SOURCES ${JPEG_SOURCES} jsimd_none.c)
|
2010-10-17 01:27:38 +04:00
|
|
|
message(STATUS "Not using SIMD acceleration")
|
2010-10-15 07:43:24 +04:00
|
|
|
endif()
|
|
|
|
|
2011-04-01 15:13:11 +04:00
|
|
|
if(WITH_JAVA)
|
|
|
|
add_subdirectory(java)
|
|
|
|
endif()
|
|
|
|
|
2010-10-15 07:43:24 +04:00
|
|
|
add_subdirectory(sharedlib)
|
|
|
|
|
|
|
|
add_library(jpeg-static STATIC ${JPEG_SOURCES} ${SIMD_OBJS})
|
|
|
|
if(NOT MSVC)
|
|
|
|
set_target_properties(jpeg-static PROPERTIES OUTPUT_NAME jpeg)
|
|
|
|
endif()
|
|
|
|
if(WITH_SIMD)
|
|
|
|
add_dependencies(jpeg-static simd)
|
|
|
|
endif()
|
|
|
|
|
2011-05-21 18:37:15 +04:00
|
|
|
set(TURBOJPEG_SOURCES turbojpegl.c transupp.c jdatadst-tj.c jdatasrc-tj.c)
|
2011-04-01 15:13:11 +04:00
|
|
|
if(WITH_JAVA)
|
2011-02-05 09:01:18 +03:00
|
|
|
set(TURBOJPEG_SOURCES ${TURBOJPEG_SOURCES} turbojpeg-jni.c)
|
2011-04-01 15:13:11 +04:00
|
|
|
include_directories(${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2})
|
2011-02-05 09:01:18 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(turbojpeg SHARED ${TURBOJPEG_SOURCES})
|
2010-10-15 07:43:24 +04:00
|
|
|
set_target_properties(turbojpeg PROPERTIES DEFINE_SYMBOL DLLDEFINE)
|
2011-02-06 21:48:13 +03:00
|
|
|
if(MINGW)
|
|
|
|
set_target_properties(turbojpeg PROPERTIES LINK_FLAGS -Wl,--kill-at)
|
|
|
|
endif()
|
2010-10-15 07:43:24 +04:00
|
|
|
target_link_libraries(turbojpeg jpeg-static)
|
|
|
|
set_target_properties(turbojpeg PROPERTIES LINK_INTERFACE_LIBRARIES "")
|
|
|
|
|
|
|
|
add_library(turbojpeg-static STATIC ${JPEG_SOURCES} ${SIMD_OBJS}
|
2011-05-21 18:37:15 +04:00
|
|
|
turbojpegl.c transupp.c jdatadst-tj.c jdatasrc-tj.c)
|
2010-10-15 07:43:24 +04:00
|
|
|
if(NOT MSVC)
|
|
|
|
set_target_properties(turbojpeg-static PROPERTIES OUTPUT_NAME turbojpeg)
|
|
|
|
endif()
|
|
|
|
if(WITH_SIMD)
|
|
|
|
add_dependencies(turbojpeg-static simd)
|
|
|
|
endif()
|
|
|
|
|
2011-05-24 21:03:51 +04:00
|
|
|
add_executable(jpegut jpegut.c tjutil.c)
|
2010-10-15 07:43:24 +04:00
|
|
|
target_link_libraries(jpegut turbojpeg)
|
|
|
|
|
2011-05-24 21:03:51 +04:00
|
|
|
add_executable(jpegut-static jpegut.c tjutil.c)
|
2010-10-15 07:43:24 +04:00
|
|
|
target_link_libraries(jpegut-static turbojpeg-static)
|
|
|
|
|
2011-05-24 21:03:51 +04:00
|
|
|
add_executable(jpgtest jpgtest.c bmp.c tjutil.c rdbmp.c rdppm.c wrbmp.c
|
|
|
|
wrppm.c)
|
|
|
|
target_link_libraries(jpgtest turbojpeg jpeg)
|
|
|
|
set_property(TARGET jpgtest PROPERTY COMPILE_FLAGS
|
|
|
|
"-DBMP_SUPPORTED -DPPM_SUPPORTED")
|
2010-10-15 07:43:24 +04:00
|
|
|
|
2011-05-24 21:03:51 +04:00
|
|
|
add_executable(jpgtest-static jpgtest.c bmp.c tjutil.c rdbmp.c rdppm.c wrbmp.c
|
|
|
|
wrppm.c)
|
|
|
|
target_link_libraries(jpgtest-static turbojpeg-static jpeg-static)
|
|
|
|
set_property(TARGET jpgtest-static PROPERTY COMPILE_FLAGS
|
|
|
|
"-DBMP_SUPPORTED -DPPM_SUPPORTED")
|
2010-10-15 07:43:24 +04:00
|
|
|
|
|
|
|
add_executable(cjpeg-static cjpeg.c cdjpeg.c rdbmp.c rdgif.c rdppm.c rdswitch.c
|
|
|
|
rdtarga.c)
|
|
|
|
set_property(TARGET cjpeg-static PROPERTY COMPILE_FLAGS
|
2011-05-02 04:35:50 +04:00
|
|
|
"-DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED -DTARGA_SUPPORTED -DUSE_SETMODE")
|
2010-10-15 07:43:24 +04:00
|
|
|
target_link_libraries(cjpeg-static jpeg-static)
|
|
|
|
|
|
|
|
add_executable(djpeg-static djpeg.c cdjpeg.c rdcolmap.c rdswitch.c wrbmp.c wrgif.c
|
|
|
|
wrppm.c wrtarga.c)
|
|
|
|
set_property(TARGET djpeg-static PROPERTY COMPILE_FLAGS
|
2011-05-02 04:35:50 +04:00
|
|
|
"-DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED -DTARGA_SUPPORTED -DUSE_SETMODE")
|
2010-10-15 07:43:24 +04:00
|
|
|
target_link_libraries(djpeg-static jpeg-static)
|
|
|
|
|
|
|
|
add_executable(jpegtran-static jpegtran.c cdjpeg.c rdswitch.c transupp.c)
|
|
|
|
target_link_libraries(jpegtran-static jpeg-static)
|
|
|
|
|
|
|
|
add_executable(rdjpgcom rdjpgcom.c)
|
|
|
|
|
|
|
|
add_executable(wrjpgcom rdjpgcom.c)
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Tests
|
|
|
|
#
|
|
|
|
|
2011-04-01 15:13:11 +04:00
|
|
|
if(MSVC_IDE)
|
|
|
|
set(OBJDIR "\${CTEST_CONFIGURATION_TYPE}/")
|
|
|
|
else()
|
|
|
|
set(OBJDIR "")
|
|
|
|
endif()
|
|
|
|
|
2010-10-15 07:43:24 +04:00
|
|
|
enable_testing()
|
2011-04-01 15:13:11 +04:00
|
|
|
if(WITH_JAVA)
|
|
|
|
add_test(TJUnitTest ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest)
|
|
|
|
add_test(TJUnitTest-yuv ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest -yuv)
|
|
|
|
add_test(TJUnitTest-bi ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest -bi)
|
|
|
|
add_test(TJUnitTest-bi-yuv ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest -bi -yuv)
|
|
|
|
endif()
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(jpegut jpegut)
|
2011-05-24 21:03:51 +04:00
|
|
|
add_test(jpegut-alloc jpegut -alloc)
|
2010-11-24 07:02:37 +03:00
|
|
|
add_test(jpegut-yuv jpegut -yuv)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-int sharedlib/cjpeg -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutint.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-fast sharedlib/cjpeg -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.jpg testoutfst.jpg)
|
2011-02-18 08:06:58 +03:00
|
|
|
add_test(cjpeg-fast-100 sharedlib/cjpeg -dct fast -quality 100 -opt -outfile testoutfst100.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
add_test(cjpeg-fast-100-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst100.jpg testoutfst100.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-float sharedlib/cjpeg -dct float -outfile testoutflt.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
if(WITH_SIMD)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.jpg testoutflt.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
else()
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt-nosimd.jpg testoutflt.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
endif()
|
2011-03-02 05:17:30 +03:00
|
|
|
add_test(cjpeg-int-gray sharedlib/cjpeg -dct int -grayscale -outfile testoutgray.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
add_test(cjpeg-int-gray-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimggray.jpg testoutgray.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-int sharedlib/djpeg -dct int -fast -ppm -outfile testoutint.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.ppm testoutint.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-fast sharedlib/djpeg -dct fast -ppm -outfile testoutfst.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.ppm testoutfst.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-float sharedlib/djpeg -dct float -ppm -outfile testoutflt.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
if(WITH_SIMD)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.ppm testoutflt.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
else()
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testorig.ppm testoutflt.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
endif()
|
2011-04-26 03:56:40 +04:00
|
|
|
add_test(djpeg-int-1_2 sharedlib/djpeg -dct int -scale 1/2 -ppm -outfile testoutint1_2.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-int-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint1_2.ppm testoutint1_2.ppm)
|
|
|
|
add_test(djpeg-fast-1_2 sharedlib/djpeg -dct fast -scale 1/2 -ppm -outfile testoutfst1_2.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-fast-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst1_2.ppm testoutfst1_2.ppm)
|
|
|
|
add_test(djpeg-int-1_4 sharedlib/djpeg -dct int -scale 1/4 -ppm -outfile testoutint1_4.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-int-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint1_4.ppm testoutint1_4.ppm)
|
|
|
|
add_test(djpeg-fast-1_4 sharedlib/djpeg -dct fast -scale 1/4 -ppm -outfile testoutfst1_4.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-fast-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst1_4.ppm testoutfst1_4.ppm)
|
|
|
|
add_test(djpeg-int-1_8 sharedlib/djpeg -dct int -scale 1/8 -ppm -outfile testoutint1_8.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-int-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint1_8.ppm testoutint1_8.ppm)
|
|
|
|
add_test(djpeg-fast-1_8 sharedlib/djpeg -dct fast -scale 1/8 -ppm -outfile testoutfst1_8.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-fast-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst1_8.ppm testoutfst1_8.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-256 sharedlib/djpeg -dct int -bmp -colors 256 -outfile testout.bmp ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-256-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimg.bmp testout.bmp)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-prog sharedlib/cjpeg -dct int -progressive -outfile testoutp.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgp.jpg testoutp.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(jpegtran-prog sharedlib/jpegtran -outfile testoutt.jpg testoutp.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(jpegtran-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutt.jpg)
|
2010-11-23 20:11:06 +03:00
|
|
|
if(WITH_ARITH_ENC)
|
2010-11-23 08:49:54 +03:00
|
|
|
add_test(cjpeg-ari sharedlib/cjpeg -dct int -arithmetic -outfile testoutari.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
add_test(cjpeg-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testoutari.jpg)
|
2010-11-23 20:11:06 +03:00
|
|
|
add_test(jpegtran-toari sharedlib/jpegtran -arithmetic -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgint.jpg)
|
|
|
|
add_test(jpegtran-toari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testouta.jpg)
|
|
|
|
endif()
|
|
|
|
if(WITH_ARITH_DEC)
|
2010-11-23 08:49:54 +03:00
|
|
|
add_test(djpeg-ari sharedlib/djpeg -dct int -fast -ppm -outfile testoutari.ppm ${CMAKE_SOURCE_DIR}/testimgari.jpg)
|
|
|
|
add_test(djpeg-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.ppm testoutari.ppm)
|
2010-11-23 20:11:06 +03:00
|
|
|
add_test(jpegtran-fromari sharedlib/jpegtran -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgari.jpg)
|
2010-11-23 08:49:54 +03:00
|
|
|
add_test(jpegtran-fromari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testouta.jpg)
|
2010-11-23 20:11:06 +03:00
|
|
|
endif()
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(jpegtran-crop sharedlib/jpegtran -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(jpegtran-crop-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgcrop.jpg testoutcrop.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
|
|
|
|
add_test(jpegut-static jpegut-static)
|
2011-05-24 21:03:51 +04:00
|
|
|
add_test(jpegut-static-alloc jpegut-static -alloc)
|
2010-11-24 07:02:37 +03:00
|
|
|
add_test(jpegut-static-yuv jpegut-static -yuv)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-static-int cjpeg-static -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-static-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutint.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-static-fast cjpeg-static -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-static-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.jpg testoutfst.jpg)
|
2011-02-18 08:06:58 +03:00
|
|
|
add_test(cjpeg-static-fast-100 cjpeg-static -dct fast -quality 100 -opt -outfile testoutfst100.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
add_test(cjpeg-static-fast-100-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst100.jpg testoutfst100.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-static-float cjpeg-static -dct float -outfile testoutflt.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
if(WITH_SIMD)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.jpg testoutflt.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
else()
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt-nosimd.jpg testoutflt.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
endif()
|
2011-03-02 05:17:30 +03:00
|
|
|
add_test(cjpeg-static-int-gray cjpeg-static -dct int -grayscale -outfile testoutgray.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
add_test(cjpeg-static-int-gray-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimggray.jpg testoutgray.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-static-int djpeg-static -dct int -fast -ppm -outfile testoutint.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-static-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.ppm testoutint.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-static-fast djpeg-static -dct fast -ppm -outfile testoutfst.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-static-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst.ppm testoutfst.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-static-float djpeg-static -dct float -ppm -outfile testoutflt.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
if(WITH_SIMD)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgflt.ppm testoutflt.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
else()
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testorig.ppm testoutflt.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
endif()
|
2011-04-26 03:56:40 +04:00
|
|
|
add_test(djpeg-static-int-1_2 djpeg-static -dct int -scale 1/2 -ppm -outfile testoutint1_2.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-static-int-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint1_2.ppm testoutint1_2.ppm)
|
|
|
|
add_test(djpeg-static-fast-1_2 djpeg-static -dct fast -scale 1/2 -ppm -outfile testoutfst1_2.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-static-fast-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst1_2.ppm testoutfst1_2.ppm)
|
|
|
|
add_test(djpeg-static-int-1_4 djpeg-static -dct int -scale 1/4 -ppm -outfile testoutint1_4.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-static-int-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint1_4.ppm testoutint1_4.ppm)
|
|
|
|
add_test(djpeg-static-fast-1_4 djpeg-static -dct fast -scale 1/4 -ppm -outfile testoutfst1_4.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-static-fast-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst1_4.ppm testoutfst1_4.ppm)
|
|
|
|
add_test(djpeg-static-int-1_8 djpeg-static -dct int -scale 1/8 -ppm -outfile testoutint1_8.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-static-int-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint1_8.ppm testoutint1_8.ppm)
|
|
|
|
add_test(djpeg-static-fast-1_8 djpeg-static -dct fast -scale 1/8 -ppm -outfile testoutfst1_8.ppm ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
|
|
|
add_test(djpeg-static-fast-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgfst1_8.ppm testoutfst1_8.ppm)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(djpeg-static-256 djpeg-static -dct int -bmp -colors 256 -outfile testout.bmp ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(djpeg-static-256-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimg.bmp testout.bmp)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(cjpeg-static-prog cjpeg-static -dct int -progressive -outfile testoutp.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(cjpeg-static-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgp.jpg testoutp.jpg)
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(jpegtran-static-prog jpegtran-static -outfile testoutt.jpg testoutp.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(jpegtran-static-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testoutt.jpg)
|
2010-11-23 20:11:06 +03:00
|
|
|
if(WITH_ARITH_ENC)
|
2010-11-23 08:49:54 +03:00
|
|
|
add_test(cjpeg-static-ari cjpeg-static -dct int -arithmetic -outfile testoutari.jpg ${CMAKE_SOURCE_DIR}/testorig.ppm)
|
|
|
|
add_test(cjpeg-static-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testoutari.jpg)
|
2010-11-23 20:11:06 +03:00
|
|
|
add_test(jpegtran-static-toari jpegtran-static -arithmetic -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgint.jpg)
|
|
|
|
add_test(jpegtran-static-toari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.jpg testouta.jpg)
|
|
|
|
endif()
|
|
|
|
if(WITH_ARITH_DEC)
|
2010-11-23 08:49:54 +03:00
|
|
|
add_test(djpeg-static-ari djpeg-static -dct int -fast -ppm -outfile testoutari.ppm ${CMAKE_SOURCE_DIR}/testimgari.jpg)
|
|
|
|
add_test(djpeg-static-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgari.ppm testoutari.ppm)
|
2010-11-23 20:11:06 +03:00
|
|
|
add_test(jpegtran-static-fromari jpegtran-static -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimgari.jpg)
|
2010-11-23 08:49:54 +03:00
|
|
|
add_test(jpegtran-static-fromari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgint.jpg testouta.jpg)
|
2010-11-23 20:11:06 +03:00
|
|
|
endif()
|
2010-10-15 07:43:24 +04:00
|
|
|
add_test(jpegtran-static-crop jpegtran-static -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg ${CMAKE_SOURCE_DIR}/testorig.jpg)
|
2010-10-18 05:06:36 +04:00
|
|
|
add_test(jpegtran-static-crop-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimgcrop.jpg testoutcrop.jpg)
|
2010-10-16 12:51:43 +04:00
|
|
|
|
2011-04-02 08:43:14 +04:00
|
|
|
add_custom_target(testclean COMMAND ${CMAKE_COMMAND} -P
|
|
|
|
${CMAKE_SOURCE_DIR}/cmakescripts/testclean.cmake)
|
|
|
|
|
2010-10-16 12:51:43 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Installer
|
|
|
|
#
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
set(INST_PLATFORM "Visual C++")
|
2011-03-22 12:31:25 +03:00
|
|
|
set(INST_NAME ${CMAKE_PROJECT_NAME}-${VERSION}-vc)
|
|
|
|
set(INST_DIR ${CMAKE_PROJECT_NAME})
|
2010-10-16 12:51:43 +04:00
|
|
|
elseif(MINGW)
|
|
|
|
set(INST_PLATFORM GCC)
|
2011-03-22 12:31:25 +03:00
|
|
|
set(INST_NAME ${CMAKE_PROJECT_NAME}-${VERSION}-gcc)
|
|
|
|
set(INST_DIR ${CMAKE_PROJECT_NAME}-gcc)
|
2010-10-16 12:51:43 +04:00
|
|
|
set(INST_DEFS -DGCC)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(64BIT)
|
|
|
|
set(INST_PLATFORM "${INST_PLATFORM} 64-bit")
|
|
|
|
set(INST_NAME ${INST_NAME}64)
|
2011-03-22 12:31:25 +03:00
|
|
|
set(INST_DIR ${INST_DIR}64)
|
2010-10-16 12:51:43 +04:00
|
|
|
set(INST_DEFS ${INST_DEFS} -DWIN64)
|
|
|
|
endif()
|
|
|
|
|
2011-04-01 15:13:11 +04:00
|
|
|
if(WITH_JAVA)
|
|
|
|
set(INST_DEFS ${INST_DEFS} -DJAVA)
|
|
|
|
endif()
|
|
|
|
|
2010-10-16 12:51:43 +04:00
|
|
|
if(MSVC_IDE)
|
2011-04-06 10:35:38 +04:00
|
|
|
set(INST_DEFS ${INST_DEFS} "-DBUILDDIR=${CMAKE_CFG_INTDIR}\\")
|
2010-10-16 12:51:43 +04:00
|
|
|
else()
|
|
|
|
set(INST_DEFS ${INST_DEFS} "-DBUILDDIR=")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
configure_file(release/libjpeg-turbo.nsi.in libjpeg-turbo.nsi @ONLY)
|
|
|
|
|
|
|
|
add_custom_target(installer
|
|
|
|
makensis -nocd ${INST_DEFS} libjpeg-turbo.nsi
|
2011-03-22 12:31:25 +03:00
|
|
|
DEPENDS jpeg jpeg-static turbojpeg turbojpeg-static rdjpgcom wrjpgcom
|
|
|
|
cjpeg djpeg jpegtran jpgtest
|
2010-10-16 12:51:43 +04:00
|
|
|
SOURCES libjpeg-turbo.nsi)
|
2010-10-17 01:55:14 +04:00
|
|
|
|
2011-02-19 02:49:42 +03:00
|
|
|
install(TARGETS jpeg-static turbojpeg turbojpeg-static rdjpgcom wrjpgcom jpgtest
|
2010-10-17 01:55:14 +04:00
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
)
|
|
|
|
|
|
|
|
install(FILES ${CMAKE_SOURCE_DIR}/LGPL.txt ${CMAKE_SOURCE_DIR}/LICENSE.txt
|
|
|
|
${CMAKE_SOURCE_DIR}/README ${CMAKE_SOURCE_DIR}/README-turbo.txt
|
|
|
|
${CMAKE_SOURCE_DIR}/libjpeg.txt ${CMAKE_SOURCE_DIR}/usage.txt
|
|
|
|
DESTINATION doc)
|
2010-10-17 11:28:08 +04:00
|
|
|
|
|
|
|
install(FILES ${CMAKE_BINARY_DIR}/jconfig.h ${CMAKE_SOURCE_DIR}/jerror.h
|
|
|
|
${CMAKE_SOURCE_DIR}/jmorecfg.h ${CMAKE_SOURCE_DIR}/jpeglib.h
|
|
|
|
${CMAKE_SOURCE_DIR}/turbojpeg.h DESTINATION include)
|