Skip to content

Commit

Permalink
Windows: Fix dependencies on PerlAsm scripts in build system.
Browse files Browse the repository at this point in the history
Wildcards are not allowed in this part of MSBuild files. When doing a
/verbosity:d build using MSBuild here, MSBuild outputs a warning/error.
  • Loading branch information
briansmith committed Aug 15, 2016
1 parent 278cf73 commit 6440d1c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mk/perlasm-msbuild.targets
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@
Name="GenerateAsm"
DependsOnTargets="CreateIntDir"
BeforeTargets="ClCompile"
Inputs="%(PerlAsm.Identity);../crypto/perlasm/*.pl"
Inputs="%(PerlAsm.Identity);
../crypto/perlasm/arm-xlate.pl;
../crypto/perlasm/x86_64-xlate.pl;
../crypto/perlasm/x86asm.pl;
../crypto/perlasm/x86gas.pl;
../crypto/perlasm/x86masm.pl;
../crypto/perlasm/x86nasm.pl"
Outputs="$(IntDir)%(PerlAsm.FileName).obj">
<Message Text="Generating code: %(PerlAsm.Identity)" />
<Exec Command="perl.exe %(PerlAsm.Identity) $(PerlAsmFlags) $(IntDir)%(PerlAsm.FileName).asm"/>
Expand Down

0 comments on commit 6440d1c

Please sign in to comment.