* avoid re-declaration of constant variables * Replace pthreads critical section with std::mutex * ci - better naming * cmake - increase minimum version to 3.11. Use project DESCRIPTION * fix - do not treat string::find() return type as bool * remove conditions that were always true * remove condition that were always false * Remove EXV_HAVE_GMTIME_R which is not used anymore * pixelWidth_ was inherited from Exiv2::Image The width & height variables in the TiffImage class need to be mutable to be able to change their values on the getters pixelHeight() and pixelWidth() ... Do not ask me why ... * Remove superfluous if * pvs:V766 item with identical key added already * pvs:V730 not all members were initialized (time) * pvs:V730 not all members are initialized * pvs:v668 no point in testing pointer against null after new * pvs:V1048 variable assigned the same value * replace c-style dynamic vector with std one * pvs:547 fakeData is always true * Remove useless constructor in derived class * pvs:V690 modern way to disable copy-ctor * Replace malloc/free with new/delete. No need to check for null * pvs:V1028 cast operands and not result * Remove custom MIN/MAX functions * pvs:V595 pointer used before verified against null * pvs: index used before being checked * pvs:V1028 possible overflow. Cast operands * pvs:v575 potential null pointer passed to other functions * pvs:V547 deal with always true/false expressions * pvs:V560 part of conditional expressions always false or true * pvs:V701 possible break in realloc -> move to std::vector * Make some classes 'final' * Replace sprintf with std::to_string() * fix compilation on windows
60 lines
1.6 KiB
CMake
60 lines
1.6 KiB
CMake
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
|
|
|
|
if (APPLE)
|
|
# On Apple, we use the conan cmake_paths generator
|
|
if (EXISTS ${CMAKE_BINARY_DIR}/conan_paths.cmake)
|
|
include(${CMAKE_BINARY_DIR}/conan_paths.cmake)
|
|
endif()
|
|
else()
|
|
# Otherwise, we rely on the conan cmake_find_package generator
|
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_BINARY_DIR})
|
|
list(APPEND CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR})
|
|
endif()
|
|
|
|
find_package (Python3 COMPONENTS Interpreter)
|
|
|
|
# don't use Frameworks on the Mac (#966)
|
|
if (APPLE)
|
|
set(CMAKE_FIND_FRAMEWORK NEVER)
|
|
endif()
|
|
|
|
if( EXIV2_ENABLE_PNG )
|
|
find_package( ZLIB REQUIRED )
|
|
endif( )
|
|
|
|
if( EXIV2_ENABLE_WEBREADY )
|
|
if( EXIV2_ENABLE_CURL )
|
|
find_package(CURL REQUIRED)
|
|
endif()
|
|
endif()
|
|
|
|
if (EXIV2_ENABLE_XMP AND EXIV2_ENABLE_EXTERNAL_XMP)
|
|
message(FATAL_ERROR "EXIV2_ENABLE_XMP AND EXIV2_ENABLE_EXTERNAL_XMP are mutually exclusive. You can only choose one of them")
|
|
else()
|
|
if (EXIV2_ENABLE_XMP)
|
|
find_package(EXPAT REQUIRED)
|
|
elseif (EXIV2_ENABLE_EXTERNAL_XMP)
|
|
find_package(XmpSdk REQUIRED)
|
|
endif ()
|
|
endif()
|
|
|
|
if (EXIV2_ENABLE_NLS)
|
|
find_package(Intl REQUIRED)
|
|
endif( )
|
|
|
|
find_package(Iconv)
|
|
if( ICONV_FOUND )
|
|
message ( "-- ICONV_INCLUDE_DIR : " ${Iconv_INCLUDE_DIR} )
|
|
message ( "-- ICONV_LIBRARIES : " ${Iconv_LIBRARY} )
|
|
endif()
|
|
|
|
if( BUILD_WITH_CCACHE )
|
|
find_program(CCACHE_FOUND ccache)
|
|
if(CCACHE_FOUND)
|
|
message(STATUS "Program ccache found")
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
|
|
endif()
|
|
endif()
|
|
|