mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
22 lines
443 B
CMake
22 lines
443 B
CMake
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}
|
|
)
|