mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
21 lines
530 B
CMake
21 lines
530 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/akregator/interfaces
|
|
${CMAKE_SOURCE_DIR}
|
|
${KDE4_INCLUDE_DIR}
|
|
${QT_INCLUDES}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
set(akregatorstorageexporter_SRCS akregatorstorageexporter.cpp)
|
|
|
|
add_executable(akregatorstorageexporter ${akregatorstorageexporter_SRCS})
|
|
|
|
target_link_libraries(akregatorstorageexporter
|
|
${KDE4_KDECORE_LIBS}
|
|
syndication
|
|
akregatorinterfaces
|
|
)
|
|
|
|
install(TARGETS akregatorstorageexporter ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|