Build speedup: dsdlc compiler is being invoked without -v, which improves its performance a tiny bit

This commit is contained in:
Pavel Kirienko 2014-03-17 22:24:31 +04:00
parent 6ad511a9be
commit f3f9f3dd18

View File

@ -30,7 +30,7 @@ add_library(uavcan SHARED ${LIBUAVCAN_CXX_FILES})
#
set(DSDLC_INPUTS "test/dsdl_test/root_ns_a" "test/dsdl_test/root_ns_b" "${CMAKE_SOURCE_DIR}/../dsdl/uavcan")
set(DSDLC_OUTPUT "include/dsdlc_generated")
add_custom_target(dsdlc dsdl_compiler/dsdlc.py -v ${DSDLC_INPUTS} -O${DSDLC_OUTPUT}
add_custom_target(dsdlc dsdl_compiler/dsdlc.py ${DSDLC_INPUTS} -O${DSDLC_OUTPUT}
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
add_dependencies(uavcan dsdlc)
include_directories(${DSDLC_OUTPUT})