diff options
author | Sebastian Trueg <sebastian@trueg.de> | 2008-02-02 16:23:27 +0000 |
---|---|---|
committer | Sebastian Trueg <sebastian@trueg.de> | 2008-02-02 16:23:27 +0000 |
commit | c32d4c98e1d154025d68baa0fa837e99fce86b15 (patch) | |
tree | e3d7f2888e34dc8ebe2ef14d635acc0619f87518 /modules | |
parent | 8a87d51e236488bcb4ffd1e6a7ffaa75026ac102 (diff) | |
download | extra-cmake-modules-c32d4c98e1d154025d68baa0fa837e99fce86b15.tar.gz extra-cmake-modules-c32d4c98e1d154025d68baa0fa837e99fce86b15.tar.bz2 |
Use the new --quiet parameter to suppress useless output
svn path=/trunk/KDE/kdelibs/; revision=770030
Diffstat (limited to 'modules')
-rw-r--r-- | modules/NepomukMacros.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/NepomukMacros.cmake b/modules/NepomukMacros.cmake index 9476cf64..00771ae6 100644 --- a/modules/NepomukMacros.cmake +++ b/modules/NepomukMacros.cmake @@ -28,22 +28,22 @@ macro(NEPOMUK_GENERATE_FROM_ONTOLOGY ontofile targetdir out_headers out_sources FILE(TO_NATIVE_PATH ${RCGEN} RCGEN) execute_process( - COMMAND ${RCGEN} --listheaders --prefix ${targetdir}/ --ontologies ${ontofile} + COMMAND ${RCGEN} --quiet --listheaders --prefix ${targetdir}/ --ontologies ${ontofile} OUTPUT_VARIABLE ${out_headers} ) execute_process( - COMMAND ${RCGEN} --listsources --prefix ${targetdir}/ --ontologies ${ontofile} + COMMAND ${RCGEN} --quiet --listsources --prefix ${targetdir}/ --ontologies ${ontofile} OUTPUT_VARIABLE ${out_sources} ) execute_process( - COMMAND ${RCGEN} --listincludes --ontologies ${ontofile} + COMMAND ${RCGEN} --quiet --listincludes --ontologies ${ontofile} OUTPUT_VARIABLE ${out_includes} ) execute_process( - COMMAND ${RCGEN} --writeall --templates ${ARGN} --target ${targetdir}/ --ontologies ${ontofile} + COMMAND ${RCGEN} --quiet --writeall --templates ${ARGN} --target ${targetdir}/ --ontologies ${ontofile} ) endmacro(NEPOMUK_GENERATE_FROM_ONTOLOGY) |