Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d3722e7

Browse files
committed
Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by Bjoern Thiel.
1 parent d669b6b commit d3722e7

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,9 @@ Tests
306306
Build
307307
-----
308308

309+
- Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by
310+
Bjoern Thiel.
311+
309312
- Issue #26465: Update Windows builds to use OpenSSL 1.0.2g.
310313

311314
- Issue #24421: Compile Modules/_math.c once, before building extensions.

PCbuild/tcltk.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<BuildDirTop>Release</BuildDirTop>
3838
<BuildDirTop Condition="$(Configuration) == 'Debug'">Debug</BuildDirTop>
3939
<BuildDirTop Condition="$(TclMachine) != 'IX86'">$(BuildDirTop)_$(TclMachine)</BuildDirTop>
40-
<BuildDirTop Condition="$(VisualStudioVersion) == '14.0'">$(BuildDirTop)_VC13</BuildDirTop>
41-
<BuildDirTop Condition="$(VisualStudioVersion) == '12.0'">$(BuildDirTop)_VC12</BuildDirTop>
42-
<BuildDirTop Condition="$(VisualStudioVersion) == '11.0'">$(BuildDirTop)_VC11</BuildDirTop>
43-
<BuildDirTop Condition="$(VisualStudioVersion) == '10.0'">$(BuildDirTop)_VC10</BuildDirTop>
40+
<BuildDirTop Condition="$(PlatformToolset) == 'v140'">$(BuildDirTop)_VC13</BuildDirTop>
41+
<BuildDirTop Condition="$(PlatformToolset) == 'v120'">$(BuildDirTop)_VC12</BuildDirTop>
42+
<BuildDirTop Condition="$(PlatformToolset) == 'v110'">$(BuildDirTop)_VC11</BuildDirTop>
43+
<BuildDirTop Condition="$(PlatformToolset) == 'v100'">$(BuildDirTop)_VC10</BuildDirTop>
4444
</PropertyGroup>
4545
</Project>

0 commit comments

Comments
 (0)