Skip to content
Snippets Groups Projects
Commit 6e6d3d7c authored by Katharina Schulz's avatar Katharina Schulz
Browse files

build(tcl): include doPostBuild of .bin

parent 9ee8c763
No related branches found
No related tags found
No related merge requests found
......@@ -404,6 +404,11 @@ proc ::fwfwk::buildProject {} {
puts "-------------------------------------------------\n"
puts "\n# INFO: Run completed (successfully).\n"
puts "\n== DO POST BUILD =="
# execute doPostBuild
::fwfwk::doPostBuild
}
# ==============================================================================
......@@ -570,6 +575,21 @@ proc ::fwfwk::doOnBuild {{ns ::fwfwk::src}} {
}
}
# ==============================================================================
## @brief executes doPostBuild procedure from all namespacess
# recursively from last children to parent before tool build starts
# recursively from last children to parent after build
# ------------------------------------------------------------------------------
proc ::fwfwk::doPostBuild {{ns ::fwfwk::src}} {
::fwfwk::iterateSrcModules $ns {
if { [info procs doPostBuild] > 0 } {
puts "# INFO: executing [namespace current]::doPostBuild"
doPostBuild }
}
}
# ==============================================================================
## @brief executes doOnSim procedure from all namespacess
# recursively from last children to parent before tool build starts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment