1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/../libs/internals
${CMAKE_CURRENT_SOURCE_DIR}/../libs
)
## next target: test for ConfigXml to make sure it can handle our connections
set(testconfigxml_SRCS
testconfigxml.cpp
)
#kde4_add_executable(testconfigxml ${testconfigxml_SRCS})
#target_link_libraries(testconfigxml knmstorage ${KDE4_KDEUI_LIBS})
## next target: test for new storage layer to make sure it can handle our connections
set(testnewstorage_SRCS
testnewstorage.cpp
)
kde4_add_executable(testnewstorage ${testnewstorage_SRCS})
target_link_libraries(testnewstorage knminternals ${KDE4_KDEUI_LIBS} knm_nm)
## next target: hacked up qdbus that can display NM data types
kde4_add_executable(qdbusfornm qdbusfornm.cpp )
target_link_libraries(qdbusfornm knminternals ${QT_QTDBUS_LIBRARY} ${QT_QTXML_LIBRARY}
${KDE4_KDECORE_LIBS})
|