mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
35 lines
668 B
CMake
35 lines
668 B
CMake
include_directories( ../libcore )
|
|
|
|
set(libviews_SRCS
|
|
globalguiconfig.cpp
|
|
stackitem.cpp
|
|
stackselection.cpp
|
|
partgraph.cpp
|
|
partselection.cpp
|
|
costlistitem.cpp
|
|
functionlistmodel.cpp
|
|
functionselection.cpp
|
|
toplevelbase.cpp
|
|
listutils.cpp
|
|
treemap.cpp
|
|
traceitemview.cpp
|
|
tabview.cpp
|
|
multiview.cpp
|
|
instrview.cpp
|
|
sourceview.cpp
|
|
callmapview.cpp
|
|
callgraphview.cpp
|
|
callview.cpp
|
|
coverageview.cpp
|
|
eventtypeview.cpp
|
|
partview.cpp
|
|
eventtypeitem.cpp
|
|
callitem.cpp
|
|
coverageitem.cpp
|
|
sourceitem.cpp
|
|
instritem.cpp
|
|
partlistitem.cpp
|
|
)
|
|
|
|
add_library(views STATIC ${libviews_SRCS})
|
|
target_link_libraries(views core)
|