plasma-framework/tests/CMakeLists.txt
David Faure 31ffe09826 Use set(CMAKE_INCLUDE_CURRENT_DIR ON) in the toplevel CMakeLists.txt, and we don't need to include
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} in each and every file anymore [only when subdirs might depend on that].

Also ran a script which makes sure that ${KDE4_INCLUDE_DIR} and ${QT_INCLUDES} are added -last-,
so that installed headers are not preferred over (possibly more uptodate) local headers.

svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=521887
2006-03-23 19:24:10 +00:00

40 lines
835 B
CMake

kde4_header()
include_directories( ${CMAKE_SOURCE_DIR}/workspace/plasma/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
########### next target ###############
set(testAppletInfo_SRCS testAppletInfo.cpp )
kde4_automoc(${testAppletInfo_SRCS})
kde4_add_executable(testAppletInfo ${testAppletInfo_SRCS})
target_link_libraries(testAppletInfo ${KDE4_KDECORE_LIBS} )
########### install files ###############
kde4_footer()
#original Makefile.am contents follow:
#INCLUDES = -I$(top_srcdir)/workspace/plasma/lib $(all_includes)
#
#AM_LDFLAGS = $(QT_LDFLAGS) $(X_LDFLAGS) $(KDE_RPATH)
#
#noinst_PROGRAMS = testAppletInfo
#noinst_HEADERS = testAppletInfo.h
#
#METASOURCES = AUTO
#
#LDADD = ../libplasma.la -lQtTest_debug
#testAppletInfo_SOURCES = testAppletInfo.cpp
#
#check-local:
# opwd=$PWD; cd $(srcdir) && $$opwd/testAppletInfo
#