aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Montel <montel@kde.org>2006-10-23 06:53:27 +0000
committerAleix Pol <aleixpol@kde.org>2014-04-26 14:11:14 +0200
commit2b3f33c7e81f966806b37c34dd9c1dde664cef18 (patch)
treeab56722882fabe7fa8e7cffd4b9d168aed7bbee5
parenta5d21a1242177f0402ba3e6b256c5456ae6f8fc3 (diff)
downloadkconfig-2b3f33c7e81f966806b37c34dd9c1dde664cef18.tar.gz
kconfig-2b3f33c7e81f966806b37c34dd9c1dde664cef18.tar.bz2
Apply Alex patch (now we can use enable-final argument some module compiles with enable-final now) As discussed with Alex it's not necessary to have program name into automoc macro
svn path=/trunk/KDE/kdebase/workspace/kcontrol/locale/; revision=598290
-rw-r--r--src/kreadconfig/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kreadconfig/CMakeLists.txt b/src/kreadconfig/CMakeLists.txt
index 328570e3..440a3b1b 100644
--- a/src/kreadconfig/CMakeLists.txt
+++ b/src/kreadconfig/CMakeLists.txt
@@ -7,7 +7,7 @@ project(kreadconfig)
set(kreadconfig_SRCS kreadconfig.cpp )
-kde4_automoc(kreadconfig ${kreadconfig_SRCS})
+kde4_automoc(${kreadconfig_SRCS})
kde4_add_executable(kreadconfig ${kreadconfig_SRCS})
@@ -20,7 +20,7 @@ install(TARGETS kreadconfig DESTINATION ${BIN_INSTALL_DIR})
set(kwriteconfig_SRCS kwriteconfig.cpp )
-kde4_automoc(kwriteconfig ${kwriteconfig_SRCS})
+kde4_automoc(${kwriteconfig_SRCS})
kde4_add_executable(kwriteconfig ${kwriteconfig_SRCS})