mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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.
This commit is contained in:
parent
487942b562
commit
f4b0c77247
@ -24,6 +24,9 @@
|
|||||||
# load tools
|
# load tools
|
||||||
source [file join [file dirname [info script]] genconfdeps.tcl]
|
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
|
package require Tk
|
||||||
|
|
||||||
set aRowIter 0
|
set aRowIter 0
|
||||||
@ -225,9 +228,9 @@ proc wokdep:gui:BrowseVcVars {} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
proc wokdep:gui:BrowsePartiesRoot {} {
|
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" != "" } {
|
if { "$aResult" != "" } {
|
||||||
set ::PRODUCTS_PATH $aResult
|
set ::PRODUCTS_PATH_INPUT $aResult
|
||||||
wokdep:gui:UpdateList
|
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}
|
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
|
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
|
checkbutton .myFrame.myChecks.myFImageCheck -offvalue "false" -onvalue "true" -variable HAVE_FREEIMAGE -command wokdep:gui:UpdateList
|
||||||
ttk::label .myFrame.myChecks.myFImageLbl -text "Use FreeImage"
|
ttk::label .myFrame.myChecks.myFImageLbl -text "Use FreeImage"
|
||||||
@ -650,6 +653,7 @@ bind .myFrame.myVsFrame.myArchCombo <<ComboboxSelected>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.myFrame.mySrchEntry configure -validate all -validatecommand {
|
.myFrame.mySrchEntry configure -validate all -validatecommand {
|
||||||
|
set ::PRODUCTS_PATH [file normalize "$::PRODUCTS_PATH_INPUT"]
|
||||||
#return [file exists "$::PRODUCTS_PATH"]
|
#return [file exists "$::PRODUCTS_PATH"]
|
||||||
wokdep:gui:UpdateList
|
wokdep:gui:UpdateList
|
||||||
return 1
|
return 1
|
||||||
|
@ -85,11 +85,14 @@ if { "$tcl_platform(platform)" != "windows" } {
|
|||||||
set HAVE_D3D ""
|
set HAVE_D3D ""
|
||||||
set HAVE_RelWithDebInfo ""
|
set HAVE_RelWithDebInfo ""
|
||||||
}
|
}
|
||||||
foreach anEnvIter {ARCH VCVER VCVARS PRJFMT PRODUCTS_PATH} {
|
foreach anEnvIter {ARCH VCVER VCVARS PRJFMT } {
|
||||||
if { [info exists ::env(${anEnvIter})] } {
|
if { [info exists ::env(${anEnvIter})] } {
|
||||||
set ${anEnvIter} "$::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)] } {
|
if { [info exists ::env(CSF_OPT_INC)] } {
|
||||||
set CSF_OPT_INC [split "$::env(CSF_OPT_INC)" $::SYS_PATH_SPLITTER]
|
set CSF_OPT_INC [split "$::env(CSF_OPT_INC)" $::SYS_PATH_SPLITTER]
|
||||||
|
@ -284,8 +284,12 @@ proc genproj {theFormat args} {
|
|||||||
|
|
||||||
# Check optional arguments
|
# Check optional arguments
|
||||||
set aLibType "dynamic"
|
set aLibType "dynamic"
|
||||||
foreach arg $args {
|
set aSolution "OCCT"
|
||||||
if { $arg == "-h" || $arg == "-help" || $arg == "--help" } {
|
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
|
set isHelpRequire true
|
||||||
} elseif { [lsearch -exact $aSupportedPlatforms $arg] >= 0 } {
|
} elseif { [lsearch -exact $aSupportedPlatforms $arg] >= 0 } {
|
||||||
set aPlatform $arg
|
set aPlatform $arg
|
||||||
@ -295,6 +299,9 @@ proc genproj {theFormat args} {
|
|||||||
} elseif { $arg == "-dynamic" } {
|
} elseif { $arg == "-dynamic" } {
|
||||||
set aLibType "dynamic"
|
set aLibType "dynamic"
|
||||||
puts "Dynamic build has been selected"
|
puts "Dynamic build has been selected"
|
||||||
|
} elseif { $arg == "-solution" } {
|
||||||
|
incr anArgIter
|
||||||
|
set aSolution [lindex $args $anArgIter]
|
||||||
} else {
|
} else {
|
||||||
puts "Error: genproj: unrecognized option \"$arg\""
|
puts "Error: genproj: unrecognized option \"$arg\""
|
||||||
set isHelpRequire true
|
set isHelpRequire true
|
||||||
@ -340,9 +347,9 @@ proc genproj {theFormat args} {
|
|||||||
# base path to where to generate projects, hardcoded from current dir
|
# base path to where to generate projects, hardcoded from current dir
|
||||||
set anAdmPath [file normalize "${::path}/adm"]
|
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
|
genAllResources
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -362,7 +369,8 @@ proc copy_with_warning {from to} {
|
|||||||
file copy -force -- "$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
|
set aTargetPlatformExt sh
|
||||||
if { $thePlatform == "wnt" || $thePlatform == "uwp" } {
|
if { $thePlatform == "wnt" || $thePlatform == "uwp" } {
|
||||||
set aTargetPlatformExt bat
|
set aTargetPlatformExt bat
|
||||||
@ -390,14 +398,13 @@ proc genprojbat {theFormat thePlatform} {
|
|||||||
copy_with_warning "$::THE_CASROOT/adm/templates/draw.${aTargetPlatformExt}" "$::path/draw.${aTargetPlatformExt}"
|
copy_with_warning "$::THE_CASROOT/adm/templates/draw.${aTargetPlatformExt}" "$::path/draw.${aTargetPlatformExt}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
set aSolShList ""
|
||||||
if { [regexp {^vc} $theFormat] } {
|
if { [regexp {^vc} $theFormat] } {
|
||||||
copy_with_warning "$::THE_CASROOT/adm/templates/msvc.bat" "$::path/msvc.bat"
|
set aSolShList "msvc.bat"
|
||||||
} else {
|
} else {
|
||||||
switch -exact -- "$theFormat" {
|
switch -exact -- "$theFormat" {
|
||||||
"cbp" {
|
"cbp" {
|
||||||
file copy -force -- "$::THE_CASROOT/adm/templates/codeblocks.sh" "$::path/codeblocks.sh"
|
set aSolShList { "codeblocks.sh" "codeblocks.bat" }
|
||||||
file copy -force -- "$::THE_CASROOT/adm/templates/codeblocks.bat" "$::path/codeblocks.bat"
|
|
||||||
|
|
||||||
# Code::Blocks 16.01 does not create directory for import libs, help him
|
# Code::Blocks 16.01 does not create directory for import libs, help him
|
||||||
set aPlatformAndCompiler "${thePlatform}/gcc"
|
set aPlatformAndCompiler "${thePlatform}/gcc"
|
||||||
if { "$thePlatform" == "mac" || "$thePlatform" == "ios" } {
|
if { "$thePlatform" == "mac" || "$thePlatform" == "ios" } {
|
||||||
@ -406,9 +413,21 @@ proc genprojbat {theFormat thePlatform} {
|
|||||||
file mkdir "$::path/${aPlatformAndCompiler}/lib"
|
file mkdir "$::path/${aPlatformAndCompiler}/lib"
|
||||||
file mkdir "$::path/${aPlatformAndCompiler}/libd"
|
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
|
###### MSVC #############################################################33
|
||||||
@ -429,7 +448,8 @@ set THE_GUIDS_LIST($aTKNullKey) "{00000000-0000-0000-0000-000000000000}"
|
|||||||
# @param theLibType Library type - dynamic or static
|
# @param theLibType Library type - dynamic or static
|
||||||
# @param thePlatform Optional target platform for cross-compiling, e.g. ios for iOS
|
# @param thePlatform Optional target platform for cross-compiling, e.g. ios for iOS
|
||||||
# @param theCmpl Compiler option (msvc or gcc)
|
# @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
|
global path
|
||||||
set anOutRoot $theOutDir
|
set anOutRoot $theOutDir
|
||||||
if { $anOutRoot == "" } {
|
if { $anOutRoot == "" } {
|
||||||
@ -493,9 +513,6 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl } {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
# generate one solution for all projects if complete OS or VAS is processed
|
|
||||||
set anAllSolution "OCCT"
|
|
||||||
|
|
||||||
wokUtils:FILES:mkdir $anOutDir
|
wokUtils:FILES:mkdir $anOutDir
|
||||||
if { ![file exists $anOutDir] } {
|
if { ![file exists $anOutDir] } {
|
||||||
puts stderr "Error: Could not create output directory \"$anOutDir\""
|
puts stderr "Error: Could not create output directory \"$anOutDir\""
|
||||||
@ -512,11 +529,11 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl } {
|
|||||||
"vc12" -
|
"vc12" -
|
||||||
"vc14" -
|
"vc14" -
|
||||||
"vc141" -
|
"vc141" -
|
||||||
"vc142" { OS:MKVC $anOutDir $aModules $anAllSolution $theFormat $isUWP}
|
"vc142" { OS:MKVC $anOutDir $aModules $theSolution $theFormat $isUWP}
|
||||||
"cbp" { OS:MKCBP $anOutDir $aModules $anAllSolution $thePlatform $theCmpl }
|
"cbp" { OS:MKCBP $anOutDir $aModules $theSolution $thePlatform $theCmpl }
|
||||||
"xcd" {
|
"xcd" {
|
||||||
set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000"
|
set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000"
|
||||||
OS:MKXCD $anOutDir $aModules $anAllSolution $theLibType $thePlatform
|
OS:MKXCD $anOutDir $aModules $theSolution $theLibType $thePlatform
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# This file has been generated by genproj.tcl script from CASROOT/adm/templates/codeblocks.sh
|
||||||
|
|
||||||
export TARGET="cbp"
|
export TARGET="cbp"
|
||||||
|
|
||||||
source ./env.sh "$1" "$TARGET"
|
source ./env.sh "$1" "$TARGET"
|
||||||
|
|
||||||
if [ -e "/Applications/CodeBlocks.app/Contents/MacOS/CodeBlocks" ]; then
|
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
|
else
|
||||||
codeblocks ./adm/$WOKSTATION/cbp/OCCT.workspace
|
codeblocks ./adm/$WOKSTATION/cbp/__SOLUTION__.workspace
|
||||||
fi
|
fi
|
||||||
|
@ -15,6 +15,7 @@ export HAVE_VTK="false";
|
|||||||
export HAVE_GLES2="false";
|
export HAVE_GLES2="false";
|
||||||
export HAVE_ZLIB="false";
|
export HAVE_ZLIB="false";
|
||||||
export HAVE_LIBLZMA="false";
|
export HAVE_LIBLZMA="false";
|
||||||
|
export HAVE_RAPIDJSON="false";
|
||||||
export MACOSX_USE_GLX="false";
|
export MACOSX_USE_GLX="false";
|
||||||
export CSF_OPT_INC=""
|
export CSF_OPT_INC=""
|
||||||
export CSF_OPT_LIB32=""
|
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_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_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_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
|
# 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
|
if [ "$MACOSX_USE_GLX" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DMACOSX_USE_GLX"; fi
|
||||||
|
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
rem This file has been generated by genproj.tcl script from CASROOT/adm/templates/msvc.bat
|
||||||
|
|
||||||
rem Setup environment
|
rem Setup environment
|
||||||
call "%~dp0env.bat" %1 %2 %3
|
call "%~dp0env.bat" %1 %2 %3
|
||||||
|
|
||||||
rem Define path to project file
|
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 exist "%PRJFILE%" set "PRJFILE=%~dp0\adm\msvc\%VCVER%\Products.sln"
|
||||||
if not "%4" == "" (
|
if not "%4" == "" (
|
||||||
set "PRJFILE=%4"
|
set "PRJFILE=%4"
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# This file has been generated by genproj.tcl script from CASROOT/adm/templates/xcode.sh
|
||||||
|
|
||||||
export TARGET="xcd"
|
export TARGET="xcd"
|
||||||
|
|
||||||
source ./env.sh "$1" "$TARGET"
|
source ./env.sh "$1" "$TARGET"
|
||||||
|
|
||||||
open -a Xcode ./adm/mac/xcd/OCCT.xcworkspace
|
open -a Xcode ./adm/mac/xcd/__SOLUTION__.xcworkspace
|
||||||
|
2
genproj
2
genproj
@ -40,7 +40,7 @@ if [ "$aTarget" == "" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
cd $aScriptPath
|
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 PATH="$anOldPath"
|
||||||
export LD_LIBRARY_PATH="$anOldLd"
|
export LD_LIBRARY_PATH="$anOldLd"
|
||||||
|
@ -54,5 +54,5 @@ if "%aPrjFmt%" == "" ( set "aPrjFmt=vcxproj" )
|
|||||||
if "%aPrjFmt%" == "vcxproj" ( set "aPrjFmt=%VCFMT%" )
|
if "%aPrjFmt%" == "vcxproj" ( set "aPrjFmt=%VCFMT%" )
|
||||||
|
|
||||||
cd %~dp0
|
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%"
|
SET "PATH=%OLD_PATH%"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user