summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-10 21:54:13 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-10 21:54:13 +0000
commit18f876866ddafa3548798c32b544a54d2410c4ed (patch)
treec8952a01791f9857bc3414331c97a20384732553
parent1efb091bca4bb2f59d228bc8c7ed7b6e318f17f9 (diff)
downloadother-18f87686.tar.gz
other-18f87686.zip
[kde-common/cmake] fixed tde_moc() macro
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common@1231316 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--cmake/modules/TDEMacros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/TDEMacros.cmake b/cmake/modules/TDEMacros.cmake
index b99aa80..1152cf6 100644
--- a/cmake/modules/TDEMacros.cmake
+++ b/cmake/modules/TDEMacros.cmake
@@ -246,7 +246,7 @@ macro( tde_moc _sources )
get_filename_component( _input_file "${_input_file}" ABSOLUTE )
get_filename_component( _basename ${_input_file} NAME_WE )
- set( _output_file "${_basename}.moc" )
+ set( _output_file "${_basename}.moc.cpp" )
add_custom_command( OUTPUT ${_output_file}
COMMAND
${TMOC_EXECUTABLE} ${_input_file} -o ${_output_file}