Browse Source

Rename custom namespace to custom_projutils

pull/5/head
Ricardo Barbedo 6 years ago
parent
commit
7efc030216
4 changed files with 5 additions and 5 deletions
  1. +1
    -1
      Vivado_init.tcl
  2. +1
    -1
      scripts/alias.tcl
  3. +1
    -1
      scripts/git_wrapper.tcl
  4. +2
    -2
      scripts/write_project_tcl_git.tcl

+ 1
- 1
Vivado_init.tcl View File

@ -1,7 +1,7 @@
set init_dir [file dirname [info script]]
source $init_dir/scripts/write_project_tcl_git.tcl
namespace import ::custom::write_project_tcl_git
namespace import ::custom_projutils::write_project_tcl_git
source $init_dir/scripts/git_wrapper.tcl
namespace import ::git_wrapper::git


+ 1
- 1
scripts/alias.tcl View File

@ -3,7 +3,7 @@
# Interface
namespace eval ::alias {
namespace export wproj
namespace import ::custom::write_project_tcl_git
namespace import ::custom_projutils::write_project_tcl_git
namespace import ::current_project
namespace import ::common::get_property
}


+ 1
- 1
scripts/git_wrapper.tcl View File

@ -11,7 +11,7 @@
namespace eval ::git_wrapper {
namespace export git
namespace import ::custom::write_project_tcl_git
namespace import ::custom_projutils::write_project_tcl_git
namespace import ::current_project
namespace import ::common::get_property


+ 2
- 2
scripts/write_project_tcl_git.tcl View File

@ -40,11 +40,11 @@
####################################################################################
package require Vivado 1.2014.1
namespace eval ::custom {
namespace eval ::custom_projutils {
namespace export write_project_tcl_git
}
namespace eval ::custom {
namespace eval ::custom_projutils {
proc write_project_tcl_git {args} {
# Summary:
# Export Tcl script for re-creating the current project


Loading…
Cancel
Save