kwin/clients/kwmtheme/cli_installer/CMakeLists.txt
Alexander Neundorf d3fe666661 -use KDE4_INCLUDES instead of KDE4_INCLUDE_DIR and QT_INCLUDES
Alex

svn path=/trunk/KDE/kdebase/workspace/; revision=522728

The following changes were in SVN, but were removed from git:

M	wallpapers/CMakeLists.txt
2006-03-26 14:52:52 +00:00

44 lines
911 B
CMake

kde4_header()
include_directories( ${KDE4_INCLUDES} )
########### next target ###############
set(kwmtheme_SRCS main.cpp )
kde4_automoc(${kwmtheme_SRCS})
kde4_add_executable(kwmtheme ${kwmtheme_SRCS})
target_link_libraries(kwmtheme ${KDE4_KDECORE_LIBS} )
install_targets(/bin kwmtheme )
########### install files ###############
kde4_footer()
#original Makefile.am contents follow:
#
## set the include path for X, qt and KDE
#INCLUDES= $(all_includes)
#
######## This part is very kwmtheme specific
## you can add here more. This one gets installed
#bin_PROGRAMS = kwmtheme
#
## Which sources should be compiled for kwmtheme.
#kwmtheme_SOURCES = main.cpp
#
## the library search path.
#kwmtheme_LDFLAGS = $(all_libraries) $(KDE_RPATH)
#
## the libraries to link against. Be aware of the order. First the libraries,
## that depend on the following ones.
#kwmtheme_LDADD = $(LIB_KDECORE)
#