mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
23 lines
474 B
CMake
23 lines
474 B
CMake
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set(visualizer_SRCS
|
|
totalcostmodel.cpp
|
|
detailedcostmodel.cpp
|
|
datatreemodel.cpp
|
|
filtereddatatreemodel.cpp
|
|
dotgraphgenerator.cpp
|
|
allocatorsmodel.cpp
|
|
)
|
|
|
|
add_library(mv-visualizer STATIC ${visualizer_SRCS})
|
|
|
|
target_link_libraries(mv-visualizer LINK_PRIVATE
|
|
mv-massifdata
|
|
mv-kdchart
|
|
${QT_QTCORE_LIBRARY}
|
|
${QT_QTGUI_LIBRARY}
|
|
${KDE4_KDECORE_LIBS}
|
|
)
|