# ===========================================================
#
# This file is a part of digiKam project
# <a href="http://www.digikam.org">http://www.digikam.org</a>
#
# @date   2010-06-29
# @brief  kipi host test application
#
# @author Copyright (C) 2009-2010 by Michael G. Hansen
#         <a href="mailto:mike at mghansen dot de">mike at mghansen dot de</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.
#
# ============================================================

PROJECT(kipitest)

INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})

ADD_DEFINITIONS(${KEXIV2_DEFINITIONS})

SET(kipicmd_sources
    kipiinterface.cpp
    kipiimagecollectionshared.cpp
    kipiimageinfoshared.cpp
    kipiimagecollectionselector.cpp
    kipiuploadwidget.cpp
    kipitest-debug.cpp
    main.cpp
   )

KDE4_ADD_EXECUTABLE(kipicmd ${kipicmd_sources})

TARGET_LINK_LIBRARIES(kipicmd 
                      ${KDE4_UI_LIBS}
                      ${KDE4_KPARTS_LIBS}
                      ${KEXIV2_LIBRARIES}
                      ${KIPI_LIBRARIES}
                      kipiplugins
                     )

ADD_SUBDIRECTORY(multithreading)
