You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
14 years ago
|
INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${ZLIB_INCLUDE_DIR} )
|
||
|
|
||
|
########### next target ###############
|
||
|
|
||
|
SET(libkmm_kdchart_la_SOURCES
|
||
|
KDChartAreaPainter.cpp
|
||
|
KDChartAxesPainter.cpp
|
||
|
KDChartAxisParams.cpp
|
||
|
KDChartAxisParamsWrapper.cpp
|
||
|
KDChartBarPainter.cpp
|
||
|
KDChartBaseSeries.cpp
|
||
|
KDChartBWPainter.cpp
|
||
|
KDChart.cpp
|
||
|
KDChartCustomBox.cpp
|
||
|
KDChartCustomBoxWrapper.cpp
|
||
|
KDChartDataIntern.cpp
|
||
|
KDChartEnums.cpp
|
||
|
KDChartHiLoPainter.cpp
|
||
|
KDChartLinesPainter.cpp
|
||
|
KDChartPainter.cpp
|
||
|
KDChartParams.cpp
|
||
|
KDChartParams_frame.cpp
|
||
|
KDChartParams_io.cpp
|
||
|
KDChartParamsWrapper.cpp
|
||
|
KDChartPiePainter.cpp
|
||
|
KDChartPlaneSeries.cpp
|
||
|
KDChartPolarPainter.cpp
|
||
|
KDChartPropertySet.cpp
|
||
|
KDChartRingPainter.cpp
|
||
|
KDChartSeriesCollection.cpp
|
||
|
KDChartTableBase.cpp
|
||
|
KDChartTableDataWrapper.cpp
|
||
|
KDChartTextPiece.cpp
|
||
|
KDChartVectorSeries.cpp
|
||
|
KDChartVectorTable.cpp
|
||
|
KDChartWidget.cpp
|
||
|
KDDrawText.cpp
|
||
|
KDFrame.cpp
|
||
|
KDFrameProfileSection.cpp
|
||
|
KDXMLTools.cpp
|
||
|
)
|
||
|
|
||
|
KDE3_AUTOMOC(${libkmm_kdchart_la_SOURCES})
|
||
|
ADD_LIBRARY(kmm_kdchart SHARED ${libkmm_kdchart_la_SOURCES})
|
||
|
SET_TARGET_PROPERTIES(kmm_kdchart PROPERTIES VERSION 0.0.0 SOVERSION 0)
|
||
|
TARGET_LINK_LIBRARIES(kmm_kdchart ${QT_AND_KDECORE_LIBS} ${ZLIB_LIBRARIES})
|
||
|
|
||
|
########### install files ###############
|
||
|
INSTALL(TARGETS kmm_kdchart
|
||
|
DESTINATION lib)
|