From f4b0c7724743aed612d5a891fa80cc4665aac4b5 Mon Sep 17 00:00:00 2001 From: kgv Date: Mon, 16 Sep 2019 11:08:23 +0300 Subject: [PATCH] 0030967: Configuration, genproj.tcl - generate OCCProducts solution for products genproj procedure has been extended with new parameters -solution, set to OCCT by default. Added missing HAVE_RAPIDJSON to env.sh. Added implicit file path normalization for PRODUCTS_PATH variable, to avoid genconf.tcl script malfunction on backslashed. --- adm/genconf.tcl | 10 ++++--- adm/genconfdeps.tcl | 5 +++- adm/genproj.tcl | 53 ++++++++++++++++++++++++------------- adm/templates/codeblocks.sh | 5 ++-- adm/templates/env.sh | 2 ++ adm/templates/msvc.bat | 3 ++- adm/templates/xcode.sh | 3 ++- genproj | 2 +- genproj.bat | 2 +- 9 files changed, 57 insertions(+), 28 deletions(-) diff --git a/adm/genconf.tcl b/adm/genconf.tcl index 244647f0e9..6e5aabe057 100644 --- a/adm/genconf.tcl +++ b/adm/genconf.tcl @@ -24,6 +24,9 @@ # load tools source [file join [file dirname [info script]] genconfdeps.tcl] +# proxy variable for implicit file path normalization +set PRODUCTS_PATH_INPUT "$::PRODUCTS_PATH" + package require Tk set aRowIter 0 @@ -225,9 +228,9 @@ proc wokdep:gui:BrowseVcVars {} { } proc wokdep:gui:BrowsePartiesRoot {} { - set aResult [tk_chooseDirectory -initialdir $::PRODUCTS_PATH -title "Choose a directory"] + set aResult [tk_chooseDirectory -initialdir $::PRODUCTS_PATH_INPUT -title "Choose a directory"] if { "$aResult" != "" } { - set ::PRODUCTS_PATH $aResult + set ::PRODUCTS_PATH_INPUT $aResult wokdep:gui:UpdateList } } @@ -441,7 +444,7 @@ ttk::label .myFrame.myHxxChecks.myScutsLbl -text "Strategy for filling he # ttk::label .myFrame.mySrchLbl -text "3rd-parties search path:" -padding {5 5 80 5} -entry .myFrame.mySrchEntry -textvariable PRODUCTS_PATH -width 80 +entry .myFrame.mySrchEntry -textvariable PRODUCTS_PATH_INPUT -width 80 ttk::button .myFrame.mySrchBrowseBtn -text "Browse" -command wokdep:gui:BrowsePartiesRoot checkbutton .myFrame.myChecks.myFImageCheck -offvalue "false" -onvalue "true" -variable HAVE_FREEIMAGE -command wokdep:gui:UpdateList ttk::label .myFrame.myChecks.myFImageLbl -text "Use FreeImage" @@ -650,6 +653,7 @@ bind .myFrame.myVsFrame.myArchCombo <> { } .myFrame.mySrchEntry configure -validate all -validatecommand { + set ::PRODUCTS_PATH [file normalize "$::PRODUCTS_PATH_INPUT"] #return [file exists "$::PRODUCTS_PATH"] wokdep:gui:UpdateList return 1 diff --git a/adm/genconfdeps.tcl b/adm/genconfdeps.tcl index 0690d4094a..d5005f5542 100644 --- a/adm/genconfdeps.tcl +++ b/adm/genconfdeps.tcl @@ -85,11 +85,14 @@ if { "$tcl_platform(platform)" != "windows" } { set HAVE_D3D "" set HAVE_RelWithDebInfo "" } -foreach anEnvIter {ARCH VCVER VCVARS PRJFMT PRODUCTS_PATH} { +foreach anEnvIter {ARCH VCVER VCVARS PRJFMT } { if { [info exists ::env(${anEnvIter})] } { set ${anEnvIter} "$::env(${anEnvIter})" } } +if { [info exists ::env(PRODUCTS_PATH)] } { + set PRODUCTS_PATH [file normalize "$::env(PRODUCTS_PATH)"] +} if { [info exists ::env(CSF_OPT_INC)] } { set CSF_OPT_INC [split "$::env(CSF_OPT_INC)" $::SYS_PATH_SPLITTER] diff --git a/adm/genproj.tcl b/adm/genproj.tcl index 0c99871ca6..57323a494c 100644 --- a/adm/genproj.tcl +++ b/adm/genproj.tcl @@ -284,8 +284,12 @@ proc genproj {theFormat args} { # Check optional arguments set aLibType "dynamic" - foreach arg $args { - if { $arg == "-h" || $arg == "-help" || $arg == "--help" } { + set aSolution "OCCT" + for {set anArgIter 0} {$anArgIter < [llength args]} {incr anArgIter} { + set arg [lindex $args $anArgIter] + if { $arg == "" } { + continue + } elseif { $arg == "-h" || $arg == "-help" || $arg == "--help" } { set isHelpRequire true } elseif { [lsearch -exact $aSupportedPlatforms $arg] >= 0 } { set aPlatform $arg @@ -295,6 +299,9 @@ proc genproj {theFormat args} { } elseif { $arg == "-dynamic" } { set aLibType "dynamic" puts "Dynamic build has been selected" + } elseif { $arg == "-solution" } { + incr anArgIter + set aSolution [lindex $args $anArgIter] } else { puts "Error: genproj: unrecognized option \"$arg\"" set isHelpRequire true @@ -340,9 +347,9 @@ proc genproj {theFormat args} { # base path to where to generate projects, hardcoded from current dir set anAdmPath [file normalize "${::path}/adm"] - OS:MKPRC "$anAdmPath" "$theFormat" "$aLibType" "$aPlatform" "$aCmpl" + OS:MKPRC "$anAdmPath" "$theFormat" "$aLibType" "$aPlatform" "$aCmpl" "$aSolution" - genprojbat "$theFormat" "$aPlatform" + genprojbat "$theFormat" "$aPlatform" "$aSolution" genAllResources } @@ -362,7 +369,8 @@ proc copy_with_warning {from to} { file copy -force -- "$from" "$to" } -proc genprojbat {theFormat thePlatform} { +# Generate auxiliary scripts for launching IDE. +proc genprojbat {theFormat thePlatform theSolution} { set aTargetPlatformExt sh if { $thePlatform == "wnt" || $thePlatform == "uwp" } { set aTargetPlatformExt bat @@ -390,14 +398,13 @@ proc genprojbat {theFormat thePlatform} { copy_with_warning "$::THE_CASROOT/adm/templates/draw.${aTargetPlatformExt}" "$::path/draw.${aTargetPlatformExt}" } + set aSolShList "" if { [regexp {^vc} $theFormat] } { - copy_with_warning "$::THE_CASROOT/adm/templates/msvc.bat" "$::path/msvc.bat" + set aSolShList "msvc.bat" } else { switch -exact -- "$theFormat" { - "cbp" { - file copy -force -- "$::THE_CASROOT/adm/templates/codeblocks.sh" "$::path/codeblocks.sh" - file copy -force -- "$::THE_CASROOT/adm/templates/codeblocks.bat" "$::path/codeblocks.bat" - + "cbp" { + set aSolShList { "codeblocks.sh" "codeblocks.bat" } # Code::Blocks 16.01 does not create directory for import libs, help him set aPlatformAndCompiler "${thePlatform}/gcc" if { "$thePlatform" == "mac" || "$thePlatform" == "ios" } { @@ -406,9 +413,21 @@ proc genprojbat {theFormat thePlatform} { file mkdir "$::path/${aPlatformAndCompiler}/lib" file mkdir "$::path/${aPlatformAndCompiler}/libd" } - "xcd" { file copy -force -- "$::THE_CASROOT/adm/templates/xcode.sh" "$::path/xcode.sh" } + "xcd" { set aSolShList "xcode.sh" } } } + + foreach aSolSh $aSolShList { + set anShFile [open "$::THE_CASROOT/adm/templates/${aSolSh}" "r"] + set anShTmpl [read $anShFile] + close $anShFile + + regsub -all -- {__SOLUTION__} $anShTmpl "$theSolution" anShTmpl + + set anShFile [open "$::path/${aSolSh}" "w"] + puts $anShFile $anShTmpl + close $anShFile + } } ###### MSVC #############################################################33 @@ -429,7 +448,8 @@ set THE_GUIDS_LIST($aTKNullKey) "{00000000-0000-0000-0000-000000000000}" # @param theLibType Library type - dynamic or static # @param thePlatform Optional target platform for cross-compiling, e.g. ios for iOS # @param theCmpl Compiler option (msvc or gcc) -proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl } { +# @param theSolution Solution name +proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl theSolution } { global path set anOutRoot $theOutDir if { $anOutRoot == "" } { @@ -493,9 +513,6 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl } { return } - # generate one solution for all projects if complete OS or VAS is processed - set anAllSolution "OCCT" - wokUtils:FILES:mkdir $anOutDir if { ![file exists $anOutDir] } { puts stderr "Error: Could not create output directory \"$anOutDir\"" @@ -512,11 +529,11 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl } { "vc12" - "vc14" - "vc141" - - "vc142" { OS:MKVC $anOutDir $aModules $anAllSolution $theFormat $isUWP} - "cbp" { OS:MKCBP $anOutDir $aModules $anAllSolution $thePlatform $theCmpl } + "vc142" { OS:MKVC $anOutDir $aModules $theSolution $theFormat $isUWP} + "cbp" { OS:MKCBP $anOutDir $aModules $theSolution $thePlatform $theCmpl } "xcd" { set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000" - OS:MKXCD $anOutDir $aModules $anAllSolution $theLibType $thePlatform + OS:MKXCD $anOutDir $aModules $theSolution $theLibType $thePlatform } } diff --git a/adm/templates/codeblocks.sh b/adm/templates/codeblocks.sh index 12eb8d2760..0053187fae 100755 --- a/adm/templates/codeblocks.sh +++ b/adm/templates/codeblocks.sh @@ -1,11 +1,12 @@ #!/bin/bash +# This file has been generated by genproj.tcl script from CASROOT/adm/templates/codeblocks.sh export TARGET="cbp" source ./env.sh "$1" "$TARGET" if [ -e "/Applications/CodeBlocks.app/Contents/MacOS/CodeBlocks" ]; then - /Applications/CodeBlocks.app/Contents/MacOS/CodeBlocks ./adm/$WOKSTATION/cbp/OCCT.workspace + /Applications/CodeBlocks.app/Contents/MacOS/CodeBlocks ./adm/$WOKSTATION/cbp/__SOLUTION__.workspace else - codeblocks ./adm/$WOKSTATION/cbp/OCCT.workspace + codeblocks ./adm/$WOKSTATION/cbp/__SOLUTION__.workspace fi diff --git a/adm/templates/env.sh b/adm/templates/env.sh index a3d7ab35c2..22672b97be 100644 --- a/adm/templates/env.sh +++ b/adm/templates/env.sh @@ -15,6 +15,7 @@ export HAVE_VTK="false"; export HAVE_GLES2="false"; export HAVE_ZLIB="false"; export HAVE_LIBLZMA="false"; +export HAVE_RAPIDJSON="false"; export MACOSX_USE_GLX="false"; export CSF_OPT_INC="" export CSF_OPT_LIB32="" @@ -103,6 +104,7 @@ if [ "$HAVE_GLES2" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -D if [ "$HAVE_VTK" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_VTK"; fi if [ "$HAVE_ZLIB" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_ZLIB"; fi if [ "$HAVE_LIBLZMA" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_LIBLZMA"; fi +if [ "$HAVE_RAPIDJSON" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_RAPIDJSON"; fi # Option to compile OCCT with X11 libs on Mac OS X if [ "$MACOSX_USE_GLX" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DMACOSX_USE_GLX"; fi diff --git a/adm/templates/msvc.bat b/adm/templates/msvc.bat index e3d977bb33..e6eb317aa3 100644 --- a/adm/templates/msvc.bat +++ b/adm/templates/msvc.bat @@ -1,10 +1,11 @@ @echo off +rem This file has been generated by genproj.tcl script from CASROOT/adm/templates/msvc.bat rem Setup environment call "%~dp0env.bat" %1 %2 %3 rem Define path to project file -set "PRJFILE=%~dp0\adm\msvc\%VCVER%\OCCT.sln" +set "PRJFILE=%~dp0\adm\msvc\%VCVER%\__SOLUTION__.sln" if not exist "%PRJFILE%" set "PRJFILE=%~dp0\adm\msvc\%VCVER%\Products.sln" if not "%4" == "" ( set "PRJFILE=%4" diff --git a/adm/templates/xcode.sh b/adm/templates/xcode.sh index ddc0620742..2514f0238e 100755 --- a/adm/templates/xcode.sh +++ b/adm/templates/xcode.sh @@ -1,7 +1,8 @@ #!/bin/bash +# This file has been generated by genproj.tcl script from CASROOT/adm/templates/xcode.sh export TARGET="xcd" source ./env.sh "$1" "$TARGET" -open -a Xcode ./adm/mac/xcd/OCCT.xcworkspace +open -a Xcode ./adm/mac/xcd/__SOLUTION__.xcworkspace diff --git a/genproj b/genproj index 62e34734c4..123ffafdd6 100755 --- a/genproj +++ b/genproj @@ -40,7 +40,7 @@ if [ "$aTarget" == "" ]; then fi cd $aScriptPath -tclsh "./adm/start.tcl" genproj ${aTarget} $anOpt2 $anOpt3 $anOpt4 $anOpt5 +tclsh "./adm/start.tcl" genproj ${aTarget} -solution "OCCT" $anOpt2 $anOpt3 $anOpt4 $anOpt5 export PATH="$anOldPath" export LD_LIBRARY_PATH="$anOldLd" diff --git a/genproj.bat b/genproj.bat index 59b4d06007..1198bd5ef0 100644 --- a/genproj.bat +++ b/genproj.bat @@ -54,5 +54,5 @@ if "%aPrjFmt%" == "" ( set "aPrjFmt=vcxproj" ) if "%aPrjFmt%" == "vcxproj" ( set "aPrjFmt=%VCFMT%" ) cd %~dp0 -%TCL_EXEC% %~dp0adm/start.tcl genproj %aPrjFmt% %aPlatform% %3 %4 %5 +%TCL_EXEC% %~dp0adm/start.tcl genproj %aPrjFmt% %aPlatform% -solution "OCCT" %3 %4 %5 SET "PATH=%OLD_PATH%"