diff --git a/adm/genconf.tcl b/adm/genconf.tcl index 9f3a6aa1c9..703928e415 100644 --- a/adm/genconf.tcl +++ b/adm/genconf.tcl @@ -394,6 +394,8 @@ ttk::combobox .myFrame.myVsFrame.myArchCombo -values { {32} {64} } -textvariab entry .myFrame.myVcEntry -textvariable VCVER -width 6 entry .myFrame.myVcVarsEntry -textvariable VCVARS -width 70 ttk::button .myFrame.myVcBrowseBtn -text "Browse" -command wokdep:gui:BrowseVcVars +ttk::label .myFrame.myHxxChecks.myRelDebInfoLbl -text "Release with Debug info" +checkbutton .myFrame.myHxxChecks.myRelDebInfoCheck -offvalue "false" -onvalue "true" -variable HAVE_RelWithDebInfo # ttk::combobox .myFrame.myHxxChecks.myScutsCombo -values { {ShortCut} {Copy} {HardLink} } -textvariable SHORTCUT_HEADERS -state readonly -width 12 @@ -508,6 +510,10 @@ if { "$tcl_platform(platform)" == "windows" } { grid .myFrame.myHxxChecks -row $aRowIter -column 0 -columnspan 10 -sticky w grid .myFrame.myHxxChecks.myScutsLbl -row 0 -column 0 grid .myFrame.myHxxChecks.myScutsCombo -row 0 -column 1 +if { "$tcl_platform(platform)" == "windows" } { + grid .myFrame.myHxxChecks.myRelDebInfoCheck -row 0 -column 2 + grid .myFrame.myHxxChecks.myRelDebInfoLbl -row 0 -column 3 +} incr aRowIter # grid .myFrame.mySrchLbl -row $aRowIter -column 0 -columnspan 10 -sticky w diff --git a/adm/genconfdeps.tcl b/adm/genconfdeps.tcl index 3f3766a84d..ae61a6ffd7 100644 --- a/adm/genconfdeps.tcl +++ b/adm/genconfdeps.tcl @@ -65,7 +65,7 @@ if { [info exists ::env(SHORTCUT_HEADERS)] } { } # fetch environment variables (e.g. set by custom.sh or custom.bat) and set them as tcl variables with the same name -set THE_ENV_VARIABLES {HAVE_FREEIMAGE HAVE_FFMPEG HAVE_TBB HAVE_GLES2 HAVE_D3D HAVE_VTK HAVE_GL2PS HAVE_ZLIB HAVE_LIBLZMA HAVE_OPENCL CHECK_QT4 CHECK_JDK MACOSX_USE_GLX} +set THE_ENV_VARIABLES {HAVE_FREEIMAGE HAVE_FFMPEG HAVE_TBB HAVE_GLES2 HAVE_D3D HAVE_VTK HAVE_GL2PS HAVE_ZLIB HAVE_LIBLZMA HAVE_OPENCL CHECK_QT4 CHECK_JDK MACOSX_USE_GLX HAVE_RelWithDebInfo} foreach anEnvIter $THE_ENV_VARIABLES { set ${anEnvIter} "false" if { [info exists ::env(${anEnvIter})] } { @@ -77,9 +77,10 @@ if { "$::tcl_platform(os)" == "Darwin" } { set HAVE_GLES2 "" } else { set MACOSX_USE_GLX "" - if { "$tcl_platform(platform)" != "windows" } { - set HAVE_D3D "" - } +} +if { "$tcl_platform(platform)" != "windows" } { + set HAVE_D3D "" + set HAVE_RelWithDebInfo "" } foreach anEnvIter {ARCH VCVER VCVARS PRODUCTS_PATH} { if { [info exists ::env(${anEnvIter})] } { diff --git a/adm/genproj.tcl b/adm/genproj.tcl index cf4de4e5ac..ef2f7e3f22 100644 --- a/adm/genproj.tcl +++ b/adm/genproj.tcl @@ -1193,17 +1193,28 @@ proc osutils:vcproj:readtemplate {theVcVer isexec} { } } + set format_template "\[\\r\\n\\s\]*" foreach bitness {32 64} { - set format_template "" + set format_templateloc "" if {"[set aCmpl${bitness}]" == ""} { - set format_template "\[\\r\\n\\s\]*" + set format_templateloc "$format_template" } - regsub -all -- "${format_template}__VCMPL${bitness}__" $aTmpl "[set aCmpl${bitness}]" aTmpl + regsub -all -- "${format_templateloc}__VCMPL${bitness}__" $aTmpl "[set aCmpl${bitness}]" aTmpl + } + + set aDebugInfo "no" + set aReleaseLnk "" + if { "$::HAVE_RelWithDebInfo" == "true" } { + set aDebugInfo "true" + set aReleaseLnk "\n true\n true" } regsub -all -- {__VCVER__} $aTmpl $theVcVer aTmpl regsub -all -- {__VCVEREXT__} $aTmpl $aVerExt aTmpl regsub -all -- {__VCCHARSET__} $aTmpl $aCharSet aTmpl + regsub -all -- {__VCReleasePDB__} $aTmpl $aDebugInfo aTmpl + regsub -all -- "${format_template}__VCLNKREL__" $aTmpl "${aReleaseLnk}" aTmpl + return $aTmpl } diff --git a/adm/templates/template.vc10 b/adm/templates/template.vc10 index 2b007aa833..1b8ee51c51 100644 --- a/adm/templates/template.vc10 +++ b/adm/templates/template.vc10 @@ -114,10 +114,11 @@ .\..\..\..\win32\__VCVER__\bin\__TKNAM__.dll true ..\..\..\win32\__VCVER__\lib;$(CSF_OPT_LIB32);%(AdditionalLibraryDirectories) - No + __VCReleasePDB__ .\..\..\..\win32\__VCVER__\bin\__TKNAM__.pdb Console ..\..\..\win32\__VCVER__\lib\__TKNAM__.lib + __VCLNKREL__ __UWP_GENERATE_METADATA__ @@ -209,10 +210,11 @@ .\..\..\..\win64\__VCVER__\bin\__TKNAM__.dll true ..\..\..\win64\__VCVER__\lib;$(CSF_OPT_LIB64);%(AdditionalLibraryDirectories) - No + __VCReleasePDB__ .\..\..\..\win64\__VCVER__\bin\__TKNAM__.pdb Console ..\..\..\win64\__VCVER__\lib\__TKNAM__.lib + __VCLNKREL__ __UWP_GENERATE_METADATA__ diff --git a/adm/templates/template.vc10x b/adm/templates/template.vc10x index cdfd3669b2..96faa80fde 100644 --- a/adm/templates/template.vc10x +++ b/adm/templates/template.vc10x @@ -106,10 +106,11 @@ __TKDEP__;%(AdditionalDependencies) true ..\..\..\win32\__VCVER__\lib;$(CSF_OPT_LIB32);%(AdditionalLibraryDirectories) - No + __VCReleasePDB__ .\..\..\..\win32\__VCVER__\bin\__XQTNAM__.pdb Console ..\..\..\win32\__VCVER__\lib\__XQTNAM__.lib + __VCLNKREL__ @@ -193,10 +194,11 @@ __TKDEP__;%(AdditionalDependencies) true ..\..\..\win64\__VCVER__\lib;$(CSF_OPT_LIB64);%(AdditionalLibraryDirectories) - No + __VCReleasePDB__ .\..\..\..\win64\__VCVER__\bin\__XQTNAM__.pdb Console ..\..\..\win64\__VCVER__\lib\__XQTNAM__.lib + __VCLNKREL__ diff --git a/dox/dev_guides/building/3rdparty/images/genconf_windows.png b/dox/dev_guides/building/3rdparty/images/genconf_windows.png index 409dff035c..df723a75a4 100644 Binary files a/dox/dev_guides/building/3rdparty/images/genconf_windows.png and b/dox/dev_guides/building/3rdparty/images/genconf_windows.png differ diff --git a/dox/dev_guides/building/msvc.md b/dox/dev_guides/building/msvc.md index e54df86da3..ac5bde6343 100644 --- a/dox/dev_guides/building/msvc.md +++ b/dox/dev_guides/building/msvc.md @@ -38,11 +38,12 @@ If you have Visual Studio projects already available (pre-installed or generated Alternatively, you can launch **genconf**, a GUI tool allowing to configure build options interactively. That tool will analyze your environment and propose you to choose available options: -* Version of Visual Studio to be used (from the list of installed ones, detected by presence of environment variables like *VS100COMNTOOLS*) +* Version of Visual Studio to be used (from the list of installed ones, detected by presence of environment variables like *VS100COMNTOOLS*). * Method to populate folder *inc* (short-cuts by default). * Location of third-party libraries (usually downloaded from OCCT web site, see above). -* Path to common directory where third-party libraries are located (optional) +* Path to common directory where third-party libraries are located (optional). * Paths to headers and binaries of the third-party libraries (found automatically basing on previous options; click button "Reset" to update). +* Generation of PDB files within Release build ("Release with Debug info", false by default). @figure{/dev_guides/building/3rdparty/images/genconf_windows.png}