Hello community,

here is the log from the commit of package libkdcraw for openSUSE:Factory 
checked in at 2015-05-11 19:21:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkdcraw (Old)
 and      /work/SRC/openSUSE:Factory/.libkdcraw.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkdcraw"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkdcraw/libkdcraw.changes      2015-03-11 
09:53:29.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libkdcraw.new/libkdcraw.changes 2015-05-11 
19:21:05.000000000 +0200
@@ -1,0 +2,22 @@
+Sat Apr 11 13:24:11 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.04.0
+   * KDE Applications 15.04.0
+   * https://www.kde.org/announcements/announce-applications-15.04.0.php
+
+
+-------------------------------------------------------------------
+Sat Mar 21 18:21:16 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.03.95
+   * KDE Applications 15.04 RC
+
+
+-------------------------------------------------------------------
+Sun Mar  8 12:50:44 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.03.80
+   * KDE Applications 15.04 Beta
+
+
+-------------------------------------------------------------------

Old:
----
  libkdcraw-14.12.3.tar.xz

New:
----
  libkdcraw-15.04.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libkdcraw.spec ++++++
--- /var/tmp/diff_new_pack.I7fxnW/_old  2015-05-11 19:21:05.000000000 +0200
+++ /var/tmp/diff_new_pack.I7fxnW/_new  2015-05-11 19:21:05.000000000 +0200
@@ -19,7 +19,7 @@
 %define _so 23
 
 Name:           libkdcraw
-Version:        14.12.3
+Version:        15.04.0
 Release:        0
 Summary:        Shared library interface around dcraw
 License:        LGPL-2.0+ and GPL-2.0+ and GPL-3.0+

++++++ libkdcraw-14.12.3.tar.xz -> libkdcraw-15.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-14.12.3/CMakeLists.txt 
new/libkdcraw-15.04.0/CMakeLists.txt
--- old/libkdcraw-14.12.3/CMakeLists.txt        2014-10-30 23:07:13.000000000 
+0100
+++ new/libkdcraw-15.04.0/CMakeLists.txt        2014-11-20 10:49:01.000000000 
+0100
@@ -1,77 +1,59 @@
-# ===========================================================
 #
-# This file is a part of digiKam project
-# <a href="http://www.digikam.org";>http://www.digikam.org</a>
+# Copyright (c) 2010-2014, Gilles Caulier, <caulier dot gilles at gmail dot 
com>
 #
-# @date   2006-12-09
-# @brief  a tread-safe libraw C++ program interface for KDE
-#
-# @author Copyright (C) 2006-2014 by Gilles Caulier
-#         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot 
gilles at gmail dot com</a>
-#
-# This program is free software; you can redistribute it
-# and/or modify it under the terms of the GNU General
-# Public License as published by the Free Software Foundation;
-# either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# ============================================================
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-PROJECT(libkdcraw)
+project(libkdcraw)
 
-SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules 
${CMAKE_MODULE_PATH})
+set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules 
${CMAKE_MODULE_PATH})
 
-MESSAGE(STATUS 
"----------------------------------------------------------------------------------")
-MESSAGE(STATUS "Starting CMake configuration for: libkdcraw")
+message(STATUS 
"----------------------------------------------------------------------------------")
+message(STATUS "Starting CMake configuration for: libkdcraw")
 
-FIND_PACKAGE(KDE4 REQUIRED)
-INCLUDE(KDE4Defaults)
-INCLUDE(MacroLibrary)
-INCLUDE(MacroOptionalAddSubdirectory)
-INCLUDE(FindPackageHandleStandardArgs)
+find_package(KDE4 REQUIRED)
+include(KDE4Defaults)
+include(MacroLibrary)
+include(MacroOptionalAddSubdirectory)
+include(FindPackageHandleStandardArgs)
 
 # NOTE: Libraw 0.16.x is prefered version to use because it's ported to Cmake 
with full features supported.
 # Until libraw 0.16.0 is release (ends of 2013), we will support previous 
version (with limited support)
-FIND_PACKAGE(LibRaw 0.15)
+find_package(LibRaw 0.15)
 SET_PACKAGE_PROPERTIES(LibRaw PROPERTIES DESCRIPTION "library that provides 
image Raw file demosaicing" URL "http://www.libraw.org"; TYPE REQUIRED PURPOSE 
"Required to build libkdcraw")
-IF(NOT LIBRAW_FOUND)
+if(NOT LIBRAW_FOUND)
     FEATURE_SUMMARY(WHAT ALL
                     INCLUDE_QUIET_PACKAGES
                     FATAL_ON_MISSING_REQUIRED_PACKAGES
                    )
-    RETURN()
-ENDIF()
+    return()
+endif()
 
 # Check LibRaw config header.
-MESSAGE(STATUS "LibRaw version: ${LibRaw_VERSION_STRING}")
+message(STATUS "LibRaw version: ${LibRaw_VERSION_STRING}")
 
-IF(EXISTS "${LibRaw_INCLUDE_DIR}/libraw_config.h")
-    ADD_DEFINITIONS(-DLIBRAW_HAS_CONFIG)
-    MESSAGE(STATUS "LibRaw config file exists: yes")
-ELSE()
-    MESSAGE(STATUS "LibRaw config file exists: no")
-ENDIF()
+if(EXISTS "${LibRaw_INCLUDE_DIR}/libraw_config.h")
+    add_definitions(-DLIBRAW_HAS_CONFIG)
+    message(STATUS "LibRaw config file exists: yes")
+else()
+    message(STATUS "LibRaw config file exists: no")
+endif()
 
-ADD_DEFINITIONS(${QT_DEFINITIONS}
+add_definitions(${QT_DEFINITIONS}
                 ${QT_QTDBUS_DEFINITIONS}
                 ${KDE4_DEFINITIONS}
                 ${LibRaw_r_DEFINITIONS}
                )
 
-INCLUDE_DIRECTORIES(${QDBUS_INCLUDE_DIRS} 
+include_directories(${QDBUS_INCLUDE_DIRS} 
                     ${CMAKE_SOURCE_DIR}
                     ${CMAKE_BINARY_DIR}
                     ${KDE4_INCLUDES}
                     ${LibRaw_INCLUDE_DIR}
                    )
 
-SET(LIBKDCRAW_AREA_CODE_GENERAL 51002)
-ADD_DEFINITIONS(-DKDE_DEFAULT_DEBUG_AREA=${LIBKDCRAW_AREA_CODE_GENERAL})
+set(LIBKDCRAW_AREA_CODE_GENERAL 51002)
+add_definitions(-DKDE_DEFAULT_DEBUG_AREA=${LIBKDCRAW_AREA_CODE_GENERAL})
 
 # 
==================================================================================================
 # Information to update before to release this library.
@@ -101,9 +83,9 @@
 # 2.4.0 => 23.0.2 (Released with KDE 4.12.0 - Drop internal Libraw source code 
+ new methods to get thumb and preview from QBuffer)
 
 # Library API version
-SET(DCRAW_LIB_MAJOR_VERSION "2")
-SET(DCRAW_LIB_MINOR_VERSION "4")
-SET(DCRAW_LIB_PATCH_VERSION "2")
+set(DCRAW_LIB_MAJOR_VERSION "2")
+set(DCRAW_LIB_MINOR_VERSION "4")
+set(DCRAW_LIB_PATCH_VERSION "2")
 
 # Suffix to add at end of version string. Usual values are:
 # "-git"   : alpha code unstable from git. Do not use in production
@@ -112,37 +94,30 @@
 # "-beta3" : beta3 release.
 # "-rc"    : release candidate.
 # ""       : final relase. Can be used in production.
-SET(DCRAW_LIB_SUFFIX_VERSION "")
+set(DCRAW_LIB_SUFFIX_VERSION "")
 
 # Library ABI version used by linker.
 # For details : 
http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
-SET(DCRAW_LIB_SO_CUR_VERSION "23")
-SET(DCRAW_LIB_SO_REV_VERSION "0")
-SET(DCRAW_LIB_SO_AGE_VERSION "0")
+set(DCRAW_LIB_SO_CUR_VERSION "23")
+set(DCRAW_LIB_SO_REV_VERSION "0")
+set(DCRAW_LIB_SO_AGE_VERSION "0")
 
 # 
==================================================================================================
 # Set env. variables accordinly.
 
-SET(DCRAW_LIB_VERSION_STRING 
"${DCRAW_LIB_MAJOR_VERSION}.${DCRAW_LIB_MINOR_VERSION}.${DCRAW_LIB_PATCH_VERSION}${DCRAW_LIB_SUFFIX_VERSION}")
-SET(DCRAW_LIB_VERSION_ID 
"0x0${DCRAW_LIB_MAJOR_VERSION}0${DCRAW_LIB_MINOR_VERSION}0${DCRAW_LIB_PATCH_VERSION}")
-
-SET(DCRAW_LIB_SO_VERSION_STRING 
"${DCRAW_LIB_SO_CUR_VERSION}.${DCRAW_LIB_SO_REV_VERSION}.${DCRAW_LIB_SO_AGE_VERSION}")
+set(DCRAW_LIB_VERSION_STRING    
"${DCRAW_LIB_MAJOR_VERSION}.${DCRAW_LIB_MINOR_VERSION}.${DCRAW_LIB_PATCH_VERSION}${DCRAW_LIB_SUFFIX_VERSION}")
+set(DCRAW_LIB_VERSION_ID        
"0x0${DCRAW_LIB_MAJOR_VERSION}0${DCRAW_LIB_MINOR_VERSION}0${DCRAW_LIB_PATCH_VERSION}")
+set(DCRAW_LIB_SO_VERSION_STRING 
"${DCRAW_LIB_SO_CUR_VERSION}.${DCRAW_LIB_SO_REV_VERSION}.${DCRAW_LIB_SO_AGE_VERSION}")
 
 # 
==================================================================================================
 
-ADD_SUBDIRECTORY(libkdcraw)
-ADD_SUBDIRECTORY(icons)
-ADD_SUBDIRECTORY(profiles)
+add_subdirectory(libkdcraw)
+add_subdirectory(icons)
+add_subdirectory(profiles)
 
-IF(KDE4_BUILD_TESTS)
+if(KDE4_BUILD_TESTS)
     MACRO_OPTIONAL_ADD_SUBDIRECTORY(tests)
-ENDIF(KDE4_BUILD_TESTS)
-  
-IF(NOT WIN32)
-    
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/cmake/templates/libkdcraw.pc.cmake.in
  ${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.pc)
-    
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/cmake/templates/libkdcraw.lsm.cmake.in
 ${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.lsm)
-    INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.pc DESTINATION 
${LIB_INSTALL_DIR}/pkgconfig)
-ENDIF(NOT WIN32)
+endif()
 
 FEATURE_SUMMARY(WHAT ALL
                 INCLUDE_QUIET_PACKAGES
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-14.12.3/icons/CMakeLists.txt 
new/libkdcraw-15.04.0/icons/CMakeLists.txt
--- old/libkdcraw-14.12.3/icons/CMakeLists.txt  2014-10-30 23:07:13.000000000 
+0100
+++ new/libkdcraw-15.04.0/icons/CMakeLists.txt  2014-11-20 10:49:01.000000000 
+0100
@@ -1,25 +1,7 @@
-# ===========================================================
 #
-# This file is a part of digiKam project
-# <a href="http://www.digikam.org";>http://www.digikam.org</a>
+# Copyright (c) 2010-2014, Gilles Caulier, <caulier dot gilles at gmail dot 
com>
 #
-# @date   2006-12-09
-# @brief  a tread-safe libraw C++ program interface for KDE
-#
-# @author Copyright (C) 2006-2012 by Gilles Caulier
-#         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot 
gilles at gmail dot com</a>
-#
-# This program is free software; you can redistribute it
-# and/or modify it under the terms of the GNU General
-# Public License as published by the Free Software Foundation;
-# either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# ============================================================
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-kde4_install_icons ( ${ICON_INSTALL_DIR} )
+kde4_install_icons(${ICON_INSTALL_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-14.12.3/libkdcraw/CMakeLists.txt 
new/libkdcraw-15.04.0/libkdcraw/CMakeLists.txt
--- old/libkdcraw-14.12.3/libkdcraw/CMakeLists.txt      2014-10-30 
23:07:13.000000000 +0100
+++ new/libkdcraw-15.04.0/libkdcraw/CMakeLists.txt      2014-11-20 
10:49:01.000000000 +0100
@@ -1,30 +1,12 @@
-# ===========================================================
 #
-# This file is a part of digiKam project
-# <a href="http://www.digikam.org";>http://www.digikam.org</a>
+# Copyright (c) 2010-2014, Gilles Caulier, <caulier dot gilles at gmail dot 
com>
 #
-# @date   2006-12-09
-# @brief  a tread-safe libraw C++ program interface for KDE
-#
-# @author Copyright (C) 2006-2014 by Gilles Caulier
-#         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot 
gilles at gmail dot com</a>
-#
-# This program is free software; you can redistribute it
-# and/or modify it under the terms of the GNU General
-# Public License as published by the Free Software Foundation;
-# either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# ============================================================
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/version.h.cmake.in 
${CMAKE_CURRENT_BINARY_DIR}/version.h)
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.h.cmake.in 
${CMAKE_CURRENT_BINARY_DIR}/version.h)
 
-SET(kdcraw_LIB_SRCS kdcraw.cpp
+set(kdcraw_LIB_SRCS kdcraw.cpp
                     kdcraw_p.cpp
                     dcrawsettingswidget.cpp
                     dcrawinfocontainer.cpp
@@ -39,7 +21,7 @@
 
 KDE4_ADD_LIBRARY(kdcraw SHARED ${kdcraw_LIB_SRCS})
 
-TARGET_LINK_LIBRARIES(kdcraw
+target_link_libraries(kdcraw
                       ${KDE4_KDEUI_LIBS}
                       ${KDE4_KIO_LIBS}
                       ${KDE4_SOLID_LIBS}
@@ -47,13 +29,13 @@
                       ${LibRaw_r_LIBRARIES}
                      )
 
-SET_TARGET_PROPERTIES(kdcraw PROPERTIES VERSION ${DCRAW_LIB_SO_VERSION_STRING} 
SOVERSION ${DCRAW_LIB_SO_CUR_VERSION})
+set_target_properties(kdcraw PROPERTIES VERSION ${DCRAW_LIB_SO_VERSION_STRING} 
SOVERSION ${DCRAW_LIB_SO_CUR_VERSION})
 
-INSTALL(TARGETS kdcraw ${INSTALL_TARGETS_DEFAULT_ARGS})
+install(TARGETS kdcraw ${INSTALL_TARGETS_DEFAULT_ARGS})
 
 # Check if compilation is done through digiKam SC or not. If yes, do not 
install header files.
-IF(NOT DIGIKAMSC_USE_PRIVATE_SHAREDLIBS)
-    INSTALL(FILES rawdecodingsettings.h
+if(NOT DIGIKAMSC_COMPILE_LIBKDCRAW)
+    install(FILES rawdecodingsettings.h
                   kdcraw.h
                   dcrawsettingswidget.h
                   rnuminput.h
@@ -66,4 +48,10 @@
                   libkdcraw_export.h
                   ${CMAKE_CURRENT_BINARY_DIR}/version.h
             DESTINATION ${INCLUDE_INSTALL_DIR}/libkdcraw COMPONENT Devel)
-ENDIF()
+
+    if(NOT WIN32)
+        
configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkdcraw.pc.cmake.in  
${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.pc)
+        
configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkdcraw.lsm.cmake.in 
${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.lsm)
+        install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkdcraw.pc DESTINATION 
${LIB_INSTALL_DIR}/pkgconfig)
+    endif()
+endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-14.12.3/profiles/CMakeLists.txt 
new/libkdcraw-15.04.0/profiles/CMakeLists.txt
--- old/libkdcraw-14.12.3/profiles/CMakeLists.txt       2014-10-30 
23:07:13.000000000 +0100
+++ new/libkdcraw-15.04.0/profiles/CMakeLists.txt       2014-11-20 
10:49:01.000000000 +0100
@@ -1,28 +1,10 @@
-# ===========================================================
 #
-# This file is a part of digiKam project
-# <a href="http://www.digikam.org";>http://www.digikam.org</a>
+# Copyright (c) 2010-2014, Gilles Caulier, <caulier dot gilles at gmail dot 
com>
 #
-# @date   2006-12-09
-# @brief  a tread-safe libraw C++ program interface for KDE
-#
-# @author Copyright (C) 2006-2012 by Gilles Caulier
-#         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot 
gilles at gmail dot com</a>
-#
-# This program is free software; you can redistribute it
-# and/or modify it under the terms of the GNU General
-# Public License as published by the Free Software Foundation;
-# either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# ============================================================
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-FILE(GLOB icmfiles *.icm *.icc)
+file(GLOB icmfiles *.icm *.icc)
 
-INSTALL(FILES  ${icmfiles}
+install(FILES ${icmfiles}
         DESTINATION ${DATA_INSTALL_DIR}/libkdcraw/profiles )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkdcraw-14.12.3/tests/CMakeLists.txt 
new/libkdcraw-15.04.0/tests/CMakeLists.txt
--- old/libkdcraw-14.12.3/tests/CMakeLists.txt  2014-10-30 23:07:13.000000000 
+0100
+++ new/libkdcraw-15.04.0/tests/CMakeLists.txt  2014-11-20 10:49:01.000000000 
+0100
@@ -1,35 +1,17 @@
-# ===========================================================
 #
-# This file is a part of digiKam project
-# <a href="http://www.digikam.org";>http://www.digikam.org</a>
+# Copyright (c) 2010-2014, Gilles Caulier, <caulier dot gilles at gmail dot 
com>
 #
-# @date   2006-12-09
-# @brief  a tread-safe libraw C++ program interface for KDE
-#
-# @author Copyright (C) 2006-2014 by Gilles Caulier
-#         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot 
gilles at gmail dot com</a>
-#
-# This program is free software; you can redistribute it
-# and/or modify it under the terms of the GNU General
-# Public License as published by the Free Software Foundation;
-# either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# ============================================================
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../libkdcraw)
+include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../libkdcraw)
 
-ADD_SUBDIRECTORY(multithreading)
+add_subdirectory(multithreading)
 
-SET(raw2png_SRCS raw2png.cpp)
-ADD_EXECUTABLE(raw2png ${raw2png_SRCS})
-TARGET_LINK_LIBRARIES(raw2png kdcraw ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+set(raw2png_SRCS raw2png.cpp)
+add_executable(raw2png ${raw2png_SRCS})
+target_link_libraries(raw2png kdcraw ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
 
-SET(libinfo_SRCS libinfo.cpp)
-ADD_EXECUTABLE(libinfo ${libinfo_SRCS})
-TARGET_LINK_LIBRARIES(libinfo kdcraw ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
+set(libinfo_SRCS libinfo.cpp)
+add_executable(libinfo ${libinfo_SRCS})
+target_link_libraries(libinfo kdcraw ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkdcraw-14.12.3/tests/multithreading/CMakeLists.txt 
new/libkdcraw-15.04.0/tests/multithreading/CMakeLists.txt
--- old/libkdcraw-14.12.3/tests/multithreading/CMakeLists.txt   2014-10-30 
23:07:13.000000000 +0100
+++ new/libkdcraw-15.04.0/tests/multithreading/CMakeLists.txt   2014-11-20 
10:49:01.000000000 +0100
@@ -1,46 +1,28 @@
-# ===========================================================
 #
-# This file is a part of digiKam project
-# <a href="http://www.digikam.org";>http://www.digikam.org</a>
+# Copyright (c) 2010-2014, Gilles Caulier, <caulier dot gilles at gmail dot 
com>
 #
-# @date   2014-10-17
-# @brief  threadweaver api test application
-#
-# @author Copyright (C) 2014 by Gilles Caulier
-#         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot 
gilles at gmail dot com</a>
-#
-# This program is free software; you can redistribute it
-# and/or modify it under the terms of the GNU General
-# Public License as published by the Free Software Foundation;
-# either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# ============================================================
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-INCLUDE_DIRECTORIES(${KDE4_INCLUDES}
+include_directories(${KDE4_INCLUDES}
                     ${QT_INCLUDE_DIR}
                     ${QT_QTCORE_INCLUDE_DIR}
                     ${CMAKE_CURRENT_SOURCE_DIR}/../../libkdcraw
-)
+                   )
 
-SET(multicorerawtopng_SRCS
+set(multicorerawtopng_SRCS
     main.cpp
     processordlg.cpp
     actionthread.cpp
-)
+   )
 
 KDE4_ADD_EXECUTABLE(multicorerawtopng ${multicorerawtopng_SRCS})
 
-TARGET_LINK_LIBRARIES(multicorerawtopng
+target_link_libraries(multicorerawtopng
                       ${QT_QTGUI_LIBRARY}
                       ${QT_QTCORE_LIBRARY}
                       ${KDE4_KDEUI_LIBS}
                       ${KDE4_KIO_LIBS}
                       ${KDE4_THREADWEAVER_LIBRARIES}
                       kdcraw
-)
+                     )


Reply via email to