diff options
author | Josh Blum | 2012-07-03 12:55:06 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-07-03 17:12:45 -0700 |
commit | eb2505b637075e75cafa700350d5b9297e1b7ef3 (patch) | |
tree | 3111ea0922b72c3aaeadf5933cea1412a74a6883 | |
parent | a5cbf3b508bcdbfdc955a92dc752218359c5c88a (diff) | |
download | gnuradio-eb2505b637075e75cafa700350d5b9297e1b7ef3.tar.gz gnuradio-eb2505b637075e75cafa700350d5b9297e1b7ef3.tar.bz2 gnuradio-eb2505b637075e75cafa700350d5b9297e1b7ef3.zip |
cmake: minor tweaks to GrSwig.cmake
Added a custom print for docstring generation
Removed unused output line from custom command
-rw-r--r-- | cmake/Modules/GrSwig.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/GrSwig.cmake b/cmake/Modules/GrSwig.cmake index b8e719353..dcdd5a066 100644 --- a/cmake/Modules/GrSwig.cmake +++ b/cmake/Modules/GrSwig.cmake @@ -67,7 +67,6 @@ function(GR_SWIG_MAKE_DOCS output_file) #call doxygen on the Doxyfile + input headers add_custom_command( OUTPUT ${OUTPUT_DIRECTORY}/xml/index.xml - ${OUTPUT_DIRECTORY}/xml/combine.xslt DEPENDS ${input_files} ${GR_SWIG_DOCS_SOURCE_DEPS} ${tag_deps} COMMAND ${DOXYGEN_EXECUTABLE} ${OUTPUT_DIRECTORY}/Doxyfile COMMENT "Generating doxygen xml for ${name} docs" @@ -81,6 +80,7 @@ function(GR_SWIG_MAKE_DOCS output_file) ${CMAKE_SOURCE_DIR}/docs/doxygen/swig_doc.py ${OUTPUT_DIRECTORY}/xml ${output_file} + COMMENT "Generating python docstrings for ${name}" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/docs/doxygen ) |