Skip to content

Commit 62617d5

Browse files
committed
vcxproj: also link-or-copy builtins
The problem with not having, say, git-receive-pack.exe after a full build is that the test suite will then happily use the *installed* git-receive-pack.exe because it finds nothing else. Absolutely not what we want. We want to have confidence that our test covers the MSVC-built Git executables, and not some random stuff. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 4695e0c commit 62617d5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

contrib/buildsystems/Generators/Vcxproj.pm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,9 @@ EOM
320320
</Target>
321321
EOM
322322
}
323+
if ($target eq 'git') {
324+
print F " <Import Project=\"LinkOrCopyBuiltins.targets\" />\n";
325+
}
323326
print F << "EOM";
324327
</Project>
325328
EOM

0 commit comments

Comments
 (0)