From 090f6dcbfa515c40a493312e727555efe9e6c15f Mon Sep 17 00:00:00 2001 From: David Faure Date: Thu, 23 Mar 2006 19:24:10 +0000 Subject: [PATCH] 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/; revision=521887 The following changes were in SVN, but were removed from git: M wallpapers/CMakeLists.txt --- CMakeLists.txt | 2 +- clients/CMakeLists.txt | 3 --- clients/b2/CMakeLists.txt | 2 +- clients/b2/config/CMakeLists.txt | 3 +-- clients/default/CMakeLists.txt | 3 +-- clients/default/config/CMakeLists.txt | 3 +-- clients/keramik/CMakeLists.txt | 2 +- clients/keramik/config/CMakeLists.txt | 3 +-- clients/kwmtheme/CMakeLists.txt | 2 +- clients/kwmtheme/cli_installer/CMakeLists.txt | 3 +-- clients/laptop/CMakeLists.txt | 2 +- clients/modernsystem/CMakeLists.txt | 2 +- clients/modernsystem/config/CMakeLists.txt | 3 +-- clients/plastik/CMakeLists.txt | 4 ++-- clients/plastik/config/CMakeLists.txt | 3 +-- clients/quartz/CMakeLists.txt | 2 +- clients/quartz/config/CMakeLists.txt | 3 +-- clients/redmond/CMakeLists.txt | 3 ++- clients/test/CMakeLists.txt | 2 +- clients/web/CMakeLists.txt | 2 +- data/CMakeLists.txt | 3 +-- kcmkwin/CMakeLists.txt | 3 +-- kcmkwin/kwindecoration/CMakeLists.txt | 3 +-- kcmkwin/kwinoptions/CMakeLists.txt | 3 +-- kcmkwin/kwinrules/CMakeLists.txt | 3 +-- killer/CMakeLists.txt | 3 +-- kompmgr/CMakeLists.txt | 3 +-- lib/CMakeLists.txt | 3 +-- oldheaders/CMakeLists.txt | 3 +-- pics/CMakeLists.txt | 3 +-- tools/CMakeLists.txt | 3 +-- tools/decobenchmark/CMakeLists.txt | 3 +-- 32 files changed, 33 insertions(+), 55 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4cc969d35..8fc4062ea5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,8 +14,8 @@ if(X11_kompmgr_FOUND) add_subdirectory(kompmgr) endif(X11_kompmgr_FOUND) +include_directories( ${CMAKE_CURRENT_BINARY_DIR}/lib ${CMAKE_CURRENT_SOURCE_DIR}/lib ) include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) -include_directories( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/lib ${CMAKE_CURRENT_SOURCE_DIR}/lib) ########### next target ############### diff --git a/clients/CMakeLists.txt b/clients/CMakeLists.txt index a2642b6c29..5517dd7f3e 100644 --- a/clients/CMakeLists.txt +++ b/clients/CMakeLists.txt @@ -10,9 +10,6 @@ add_subdirectory( quartz ) add_subdirectory( redmond ) add_subdirectory( web ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) - - ########### install files ############### diff --git a/clients/b2/CMakeLists.txt b/clients/b2/CMakeLists.txt index 912e03d0b6..f21c994e15 100644 --- a/clients/b2/CMakeLists.txt +++ b/clients/b2/CMakeLists.txt @@ -2,7 +2,7 @@ kde4_header() add_subdirectory( config ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/b2/config/CMakeLists.txt b/clients/b2/config/CMakeLists.txt index 388321b440..51c5e8c021 100644 --- a/clients/b2/config/CMakeLists.txt +++ b/clients/b2/config/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/default/CMakeLists.txt b/clients/default/CMakeLists.txt index b3b7358ed9..ea05587a19 100644 --- a/clients/default/CMakeLists.txt +++ b/clients/default/CMakeLists.txt @@ -2,8 +2,7 @@ kde4_header() add_subdirectory( config ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib) - +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/default/config/CMakeLists.txt b/clients/default/config/CMakeLists.txt index 4e9a9dc3a5..be246fc9fc 100644 --- a/clients/default/config/CMakeLists.txt +++ b/clients/default/config/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/keramik/CMakeLists.txt b/clients/keramik/CMakeLists.txt index bb7f2a152d..708dd94d3a 100644 --- a/clients/keramik/CMakeLists.txt +++ b/clients/keramik/CMakeLists.txt @@ -2,7 +2,7 @@ kde4_header() add_subdirectory( config ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/keramik/config/CMakeLists.txt b/clients/keramik/config/CMakeLists.txt index caf161e581..db05b6ec9b 100644 --- a/clients/keramik/config/CMakeLists.txt +++ b/clients/keramik/config/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/kwmtheme/CMakeLists.txt b/clients/kwmtheme/CMakeLists.txt index d24311b90a..0e2ba1d4e3 100644 --- a/clients/kwmtheme/CMakeLists.txt +++ b/clients/kwmtheme/CMakeLists.txt @@ -2,7 +2,7 @@ kde4_header() add_subdirectory( cli_installer ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/kwmtheme/cli_installer/CMakeLists.txt b/clients/kwmtheme/cli_installer/CMakeLists.txt index 31897367aa..a79a78eeea 100644 --- a/clients/kwmtheme/cli_installer/CMakeLists.txt +++ b/clients/kwmtheme/cli_installer/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/laptop/CMakeLists.txt b/clients/laptop/CMakeLists.txt index 07dd61d813..899d3913d3 100644 --- a/clients/laptop/CMakeLists.txt +++ b/clients/laptop/CMakeLists.txt @@ -1,6 +1,6 @@ kde4_header() -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/modernsystem/CMakeLists.txt b/clients/modernsystem/CMakeLists.txt index 0ee7383ea9..3ac070ea18 100644 --- a/clients/modernsystem/CMakeLists.txt +++ b/clients/modernsystem/CMakeLists.txt @@ -2,7 +2,7 @@ kde4_header() add_subdirectory( config ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/modernsystem/config/CMakeLists.txt b/clients/modernsystem/config/CMakeLists.txt index 3fb1204968..ffdbbd9008 100644 --- a/clients/modernsystem/config/CMakeLists.txt +++ b/clients/modernsystem/config/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/plastik/CMakeLists.txt b/clients/plastik/CMakeLists.txt index 95d83078d7..479abab2db 100644 --- a/clients/plastik/CMakeLists.txt +++ b/clients/plastik/CMakeLists.txt @@ -1,8 +1,8 @@ kde4_header() -add_subdirectory( config ) +add_subdirectory( config ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/plastik/config/CMakeLists.txt b/clients/plastik/config/CMakeLists.txt index 26ba8c020f..e45c11ac05 100644 --- a/clients/plastik/config/CMakeLists.txt +++ b/clients/plastik/config/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/quartz/CMakeLists.txt b/clients/quartz/CMakeLists.txt index 548ea42e31..65b7873d0b 100644 --- a/clients/quartz/CMakeLists.txt +++ b/clients/quartz/CMakeLists.txt @@ -2,7 +2,7 @@ kde4_header() add_subdirectory( config ) -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/quartz/config/CMakeLists.txt b/clients/quartz/config/CMakeLists.txt index 86e323096c..85a25bbabd 100644 --- a/clients/quartz/config/CMakeLists.txt +++ b/clients/quartz/config/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/redmond/CMakeLists.txt b/clients/redmond/CMakeLists.txt index 99f01c5402..7e8728a6af 100644 --- a/clients/redmond/CMakeLists.txt +++ b/clients/redmond/CMakeLists.txt @@ -1,6 +1,7 @@ kde4_header() -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) + ########### next target ############### diff --git a/clients/test/CMakeLists.txt b/clients/test/CMakeLists.txt index 6a4adf1b58..3c9576c097 100644 --- a/clients/test/CMakeLists.txt +++ b/clients/test/CMakeLists.txt @@ -1,6 +1,6 @@ kde4_header() -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/clients/web/CMakeLists.txt b/clients/web/CMakeLists.txt index c430ca5aa7..20d1f67c16 100644 --- a/clients/web/CMakeLists.txt +++ b/clients/web/CMakeLists.txt @@ -1,6 +1,6 @@ kde4_header() -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt index 5b014f2a33..4565840492 100644 --- a/data/CMakeLists.txt +++ b/data/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/kcmkwin/CMakeLists.txt b/kcmkwin/CMakeLists.txt index d62e9fdbd1..e00f183baf 100644 --- a/kcmkwin/CMakeLists.txt +++ b/kcmkwin/CMakeLists.txt @@ -3,8 +3,7 @@ kde4_header() add_subdirectory( kwinoptions ) add_subdirectory( kwindecoration ) add_subdirectory( kwinrules ) - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### install files ############### diff --git a/kcmkwin/kwindecoration/CMakeLists.txt b/kcmkwin/kwindecoration/CMakeLists.txt index 072a1fc21e..afc525afb4 100644 --- a/kcmkwin/kwindecoration/CMakeLists.txt +++ b/kcmkwin/kwindecoration/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/kcmkwin/kwinoptions/CMakeLists.txt b/kcmkwin/kwinoptions/CMakeLists.txt index cb6d719d15..5e55192d50 100644 --- a/kcmkwin/kwinoptions/CMakeLists.txt +++ b/kcmkwin/kwinoptions/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/kcmkwin/kwinrules/CMakeLists.txt b/kcmkwin/kwinrules/CMakeLists.txt index d874b8284e..43766bd652 100644 --- a/kcmkwin/kwinrules/CMakeLists.txt +++ b/kcmkwin/kwinrules/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/workspace/kwin/lib) +include_directories( ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${CMAKE_SOURCE_DIR}/workspace/kwin/lib ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ADD_DEFINITIONS(-DKCMRULES) ########### next target ############### diff --git a/killer/CMakeLists.txt b/killer/CMakeLists.txt index 5a56bf9f3c..de33d15d2f 100644 --- a/killer/CMakeLists.txt +++ b/killer/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/kompmgr/CMakeLists.txt b/kompmgr/CMakeLists.txt index cfbe836071..7846d7b95e 100644 --- a/kompmgr/CMakeLists.txt +++ b/kompmgr/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 66c1400581..ae50c38e14 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/oldheaders/CMakeLists.txt b/oldheaders/CMakeLists.txt index ff3457e2e5..3689f28846 100644 --- a/oldheaders/CMakeLists.txt +++ b/oldheaders/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### install files ############### diff --git a/pics/CMakeLists.txt b/pics/CMakeLists.txt index cf17b62292..6cc7a29b67 100644 --- a/pics/CMakeLists.txt +++ b/pics/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### install files ############### diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index e07c549302..01a8163c18 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,8 +1,7 @@ kde4_header() add_subdirectory( decobenchmark ) - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ############### diff --git a/tools/decobenchmark/CMakeLists.txt b/tools/decobenchmark/CMakeLists.txt index e0e30a4dc0..b38450efd7 100644 --- a/tools/decobenchmark/CMakeLists.txt +++ b/tools/decobenchmark/CMakeLists.txt @@ -1,6 +1,5 @@ kde4_header() - -include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) ########### next target ###############