mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
23 lines
443 B
Text
23 lines
443 B
Text
![]() |
include_directories(
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
)
|
||
|
|
||
|
set(massifdata_SRCS
|
||
|
filedata.cpp
|
||
|
snapshotitem.cpp
|
||
|
treeleafitem.cpp
|
||
|
parser.cpp
|
||
|
parserprivate.cpp
|
||
|
parseworker.cpp
|
||
|
util.cpp
|
||
|
)
|
||
|
|
||
|
add_library(mv-massifdata STATIC ${massifdata_SRCS})
|
||
|
|
||
|
target_link_libraries(mv-massifdata LINK_PRIVATE
|
||
|
${QT_QTCORE_LIBRARY}
|
||
|
# required for Qt::escape() in QTextDocument
|
||
|
${QT_QTGUI_LIBRARY}
|
||
|
)
|