From 6d43db4f7427dd2d8a05f931f7bdebae889849d9 Mon Sep 17 00:00:00 2001 From: kgv Date: Mon, 30 Mar 2020 17:55:16 +0300 Subject: [PATCH] 0031471: Confuguration, genproj - unable to build OCC Products Restored parsing of src/VAS/Products.tcl. --- adm/genproj.tcl | 24 +++++++++++++++++------- src/OS/Tools.tcl | 2 +- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/adm/genproj.tcl b/adm/genproj.tcl index a1cc195d52..961c42e4d1 100644 --- a/adm/genproj.tcl +++ b/adm/genproj.tcl @@ -490,7 +490,10 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl theSolution } } # make list of modules and platforms - set aModules [OS:init Modules] + set aModules [OS:init OS Modules] + if { [llength $aModules] == 0 } { + set aModules [OS:init VAS Products] + } if { "$thePlatform" == "ios" } { set goaway [list Draw] set aModules [osutils:juststation $goaway $aModules] @@ -517,7 +520,10 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl theSolution } # make list of Inspector tools set aTools {} if { "$::BUILD_Inspector" == "true" } { - set aTools [OS:init Tools] + set aTools [OS:init OS Tools] + if { [llength $aTools] == 0 } { + set aTools [OS:init VAS Tools] + } # create the out dir if it does not exist if (![file isdirectory $path/inc/inspector]) { @@ -594,22 +600,26 @@ proc OS:MKVC { theOutDir theModules theTools theAllSolution theVcVer isUWP } { puts "The Visual Studio solution and project files are stored in the $theOutDir directory" } -proc OS:init {theNameOfDefFile {os {}}} { +proc OS:init {theVas theNameOfDefFile {os {}}} { set askplat $os set aModules {} if { "$os" == "" } { set os $::tcl_platform(os) } + if { ![file exists "$::path/src/${theVas}/${theNameOfDefFile}.tcl"]} { + return $aModules + } + # Load list of OCCT modules and their definitions - source "$::path/src/OS/${theNameOfDefFile}.tcl" - foreach aModuleIter [OS:Modules] { - set aFileTcl "$::path/src/OS/${aModuleIter}.tcl" + source "$::path/src/${theVas}/${theNameOfDefFile}.tcl" + foreach aModuleIter [${theVas}:${theNameOfDefFile}] { + set aFileTcl "$::path/src/${theVas}/${aModuleIter}.tcl" if [file exists $aFileTcl] { source $aFileTcl lappend aModules $aModuleIter } else { - puts stderr "Definition file for $aModuleIter is not found in unit OS" + puts stderr "Definition file for $aModuleIter is not found in unit ${theVas}" } } diff --git a/src/OS/Tools.tcl b/src/OS/Tools.tcl index 45f4ba0538..d14c0bb57a 100644 --- a/src/OS/Tools.tcl +++ b/src/OS/Tools.tcl @@ -14,7 +14,7 @@ ;# ;# Returns an ordered list of module names ;# -proc OS:Modules { {plat ""} } { +proc OS:Tools { {plat ""} } { set ret [list TModelingData \ TVisualization \ TApplicationFramework \