diff options
author | Sebastian Trueg <sebastian@trueg.de> | 2008-02-02 21:47:29 +0000 |
---|---|---|
committer | Sebastian Trueg <sebastian@trueg.de> | 2008-02-02 21:47:29 +0000 |
commit | 1ed1dcce2c979c8b706f81a042c712e2fb00cef0 (patch) | |
tree | 175fb7db9620298d74d227f5a877bbe4b8c45878 /modules | |
parent | 5950ab2665426d9fad7a6c81a740c39a215a720d (diff) | |
download | extra-cmake-modules-1ed1dcce2c979c8b706f81a042c712e2fb00cef0.tar.gz extra-cmake-modules-1ed1dcce2c979c8b706f81a042c712e2fb00cef0.tar.bz2 |
Reverted to version without --quiet parameter to be backwards compatible
svn path=/trunk/KDE/kdelibs/; revision=770138
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 00771ae6..9476cf64 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} --quiet --listheaders --prefix ${targetdir}/ --ontologies ${ontofile} + COMMAND ${RCGEN} --listheaders --prefix ${targetdir}/ --ontologies ${ontofile} OUTPUT_VARIABLE ${out_headers} ) execute_process( - COMMAND ${RCGEN} --quiet --listsources --prefix ${targetdir}/ --ontologies ${ontofile} + COMMAND ${RCGEN} --listsources --prefix ${targetdir}/ --ontologies ${ontofile} OUTPUT_VARIABLE ${out_sources} ) execute_process( - COMMAND ${RCGEN} --quiet --listincludes --ontologies ${ontofile} + COMMAND ${RCGEN} --listincludes --ontologies ${ontofile} OUTPUT_VARIABLE ${out_includes} ) execute_process( - COMMAND ${RCGEN} --quiet --writeall --templates ${ARGN} --target ${targetdir}/ --ontologies ${ontofile} + COMMAND ${RCGEN} --writeall --templates ${ARGN} --target ${targetdir}/ --ontologies ${ontofile} ) endmacro(NEPOMUK_GENERATE_FROM_ONTOLOGY) |