diff --git a/konsole/CMakeLists.txt b/konsole/CMakeLists.txt index 252eb8c5..815028bf 100644 --- a/konsole/CMakeLists.txt +++ b/konsole/CMakeLists.txt @@ -6,7 +6,7 @@ OPTION(KONSOLE_GENERATE_LINEFONT "Konsole: regenerate linefont file" OFF) set(fontembedder_SRCS fontembedder.cpp ) -kde4_automoc(fontembedder ${fontembedder_SRCS}) +kde4_automoc(${fontembedder_SRCS}) kde4_add_executable(fontembedder ${fontembedder_SRCS}) @@ -45,7 +45,7 @@ set(konsole_KDEINIT_SRCS ViewSplitter.cpp ViewContainer.cpp ) -kde4_automoc(konsole ${konsole_KDEINIT_SRCS}) +kde4_automoc(${konsole_KDEINIT_SRCS}) kde4_add_kdeinit_executable( konsole ${konsole_KDEINIT_SRCS}) @@ -89,7 +89,7 @@ set(konsolepart_PART_SRCS TerminalCharacterDecoder.cpp SessionManager.cpp ) -kde4_automoc(konsolepart ${konsolepart_PART_SRCS}) +kde4_automoc(${konsolepart_PART_SRCS}) kde4_add_plugin(konsolepart WITH_PREFIX ${konsolepart_PART_SRCS}) @@ -108,7 +108,7 @@ install(TARGETS konsolepart DESTINATION ${PLUGIN_INSTALL_DIR} ) set(kded_kwrited_PART_SRCS kwrited.cpp ) -kde4_automoc(kded_kwrited ${kded_kwrited_PART_SRCS}) +kde4_automoc(${kded_kwrited_PART_SRCS}) kde4_add_plugin(kded_kwrited ${kded_kwrited_PART_SRCS}) diff --git a/settings/CMakeLists.txt b/settings/CMakeLists.txt index 40f2a2fa..517e34c8 100644 --- a/settings/CMakeLists.txt +++ b/settings/CMakeLists.txt @@ -5,7 +5,7 @@ set(kcm_konsole_PART_SRCS schemaeditor.cpp sessioneditor.cpp kcmkonsole.cpp ) -kde4_automoc(kcm_konsole ${kcm_konsole_PART_SRCS}) +kde4_automoc(${kcm_konsole_PART_SRCS}) kde4_add_ui3_files(kcm_konsole_PART_SRCS schemadialog.ui )