Browse Source

Remove warning when local sources are detected when the project script is generated

pull/5/head
Ricardo Barbedo 6 years ago
parent
commit
dd5d4ceba6
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      scripts/write_project_tcl_git.tcl

+ 2
- 6
scripts/write_project_tcl_git.tcl View File

@ -37,6 +37,8 @@
# 4. No mention to the creation time of the project script, so that it is not different # 4. No mention to the creation time of the project script, so that it is not different
# every time it is generated. # every time it is generated.
# #
# 5. Remove warning when local sources are detected.
#
#################################################################################### ####################################################################################
package require Vivado 1.2014.1 package require Vivado 1.2014.1
@ -376,12 +378,6 @@ proc write_project_tcl_script {} {
} }
} }
if { $a_global_vars(b_local_sources) } {
print_local_file_msg "warning"
} else {
print_local_file_msg "info"
}
reset_global_vars reset_global_vars
return 0 return 0


Loading…
Cancel
Save