kdelibs/kparts/CMakeLists.txt
Ivailo Monev 41631e5960 kparts: drop status bar extension
other than setting the status bar text no other feature functions
properly and there is a signal to change the part window status bar
text thus the class is redundant

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-08-31 05:06:55 +03:00

61 lines
1,019 B
CMake

project(kparts)
add_definitions(
-DKDE_DEFAULT_DEBUG_AREA=1000
)
if(ENABLE_TESTING)
add_subdirectory(tests)
endif()
include_directories(${KDE4_KIO_INCLUDES} ${kparts_BINARY_DIR})
########### next target ###############
set(kparts_LIB_SRCS
part.cpp
mainwindow.cpp
event.cpp
factory.cpp
)
add_library(kparts SHARED ${kparts_LIB_SRCS})
target_link_libraries(kparts PUBLIC
kdecore
kdeui
kio
)
set_target_properties(kparts PROPERTIES
VERSION ${GENERIC_LIB_VERSION}
SOVERSION ${GENERIC_LIB_SOVERSION}
)
install(
TARGETS kparts
EXPORT kdelibsTargets
DESTINATION ${KDE4_LIB_INSTALL_DIR}
)
########### install files ###############
install(
FILES
kpart.desktop
krop.desktop
krwp.desktop
DESTINATION ${KDE4_SERVICETYPES_INSTALL_DIR}
)
generate_export_header(kparts)
install(
FILES
${CMAKE_CURRENT_BINARY_DIR}/kparts_export.h
part.h
mainwindow.h
event.h
factory.h
DESTINATION ${KDE4_INCLUDE_INSTALL_DIR}/kparts
)