From 41bb15f7b78c9f52f7db6e6a87eeba8875fbe8a5 Mon Sep 17 00:00:00 2001 From: Luis Diaz Mas Date: Sun, 6 May 2018 19:22:59 +0200 Subject: [PATCH] Remove usage of CMAKE_DEBUG_POSTFIX This option should be provided when calling to the cmake command. Otherwise, we overwrite the value even when the user pass the value in the command line. --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dd3d4e73..2de57f1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -100,10 +100,6 @@ include_directories(${CMAKE_BINARY_DIR}) # Make the exv_conf.h file visible for include( config/CMakeChecks.txt ) -if( MSVC ) - set(CMAKE_DEBUG_POSTFIX "d") -endif() - if( EXIV2_ENABLE_XMP ) add_subdirectory( xmpsdk ) endif()