blob: dd9af6ef04e1d0ae9e53bd3ca0282d0f9422625f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
##### rsslocal library (static)
tde_add_library( rsslocal STATIC_PIC AUTOMOC
SOURCES
article.cpp document.cpp image.cpp textinput.cpp tools_p.cpp loader.cpp
)
##### testlibrss (executable)
tde_add_check_executable( testlibrss AUTOMOC
SOURCES testlibrss.cpp
LINK
rsslocal-static
ktorrent-shared tdecore-shared tdeui-shared tdeio-shared tdeparts-shared
# uncomment the following line for a real test during building
# TEST https://floss.social/@tde.rss
)
|