Fix FTBFS
parent
49b7f1fc78
commit
657d173148
@ -1,12 +1,37 @@
|
|||||||
if (QTC_STYLE_SUPPORT)
|
#################################################
|
||||||
set(kstyle_qtcurve_config_PART_SRCS qtcurveconfig.cpp exportthemedialog.cpp)
|
#
|
||||||
else (QTC_STYLE_SUPPORT)
|
# (C) 2011 Timothy Pearson
|
||||||
set(kstyle_qtcurve_config_PART_SRCS qtcurveconfig.cpp)
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
endif (QTC_STYLE_SUPPORT)
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/common ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_BINARY_DIR} ${KDE3_INCLUDE_DIR} ${QT_INCLUDE_DIR})
|
#
|
||||||
trinity_add_ui_files(kstyle_qtcurve_config_PART_SRCS qtcurveconfigbase.ui)
|
# This file is released under GPL >= 2
|
||||||
trinity_add_kpart(kstyle_qtcurve_config ${kstyle_qtcurve_config_PART_SRCS})
|
#
|
||||||
trinity_automoc(${kstyle_qtcurve_config_PART_SRCS})
|
#################################################
|
||||||
target_link_libraries(kstyle_qtcurve_config ${QT_AND_TDECORE_LIBS} kio tdeui)
|
|
||||||
install(TARGETS kstyle_qtcurve_config DESTINATION ${KDE3_LIB_DIR}/trinity)
|
include_directories(
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${TDE_INCLUDE_DIRS}
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kstyle_qtcurve_config #####################
|
||||||
|
|
||||||
|
set( target kstyle_qtcurve_config )
|
||||||
|
|
||||||
|
set( ${target}_SRCS
|
||||||
|
qtcurveconfig.cpp exportthemedialog.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_add_kpart( ${target} AUTOMOC
|
||||||
|
SOURCES ${${target}_SRCS}
|
||||||
|
LINK tdeui-shared kio-shared
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue