summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gladman <brg@gladman.plus.com>2018-09-28 00:38:32 +0100
committerBrian Gladman <brg@gladman.plus.com>2018-09-28 00:38:32 +0100
commit35af9720e36df19382a57be26643b0d6bb48a363 (patch)
tree9809e87e445ade4a3ccfb865b438713e2abb6dfc
parent627e1c29a425af7791ae6fe8a7b4d3815e3398e0 (diff)
downloadyasm-35af9720e36df19382a57be26643b0d6bb48a363.tar.gz
change vsyasm.props to use the YASM_PATH environment variable if present
-rw-r--r--Mkfiles/vc15/vsyasm.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mkfiles/vc15/vsyasm.props b/Mkfiles/vc15/vsyasm.props
index 889097fa..8e2269b6 100644
--- a/Mkfiles/vc15/vsyasm.props
+++ b/Mkfiles/vc15/vsyasm.props
@@ -10,7 +10,7 @@
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(YASMDependsOn)</YASMDependsOn>
</PropertyGroup>
<PropertyGroup>
- <YasmPath Condition= "'$(YASMPATH)' == ''">C:\Program Files\yasm\</YasmPath>
+ <YASM_PATH Condition= "'$(YASM_PATH)' == ''">C:\Program Files\yasm\</YASM_PATH>
</PropertyGroup>
<ItemDefinitionGroup>
<YASM>
@@ -18,10 +18,10 @@
<ObjectFile>$(IntDir)%(FileName).obj</ObjectFile>
<PreProc>0</PreProc>
<Parser>0</Parser>
- <CommandLineTemplate>"$(YasmPath)"vsyasm.exe -Xvc -f $(Platform) [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
+ <CommandLineTemplate>"$(YASM_PATH)"vsyasm.exe -Xvc -f $(Platform) [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
<Outputs>%(ObjectFile)</Outputs>
<ExecutionDescription>Assembling %(Filename)%(Extension) ==> $(IntDir)%(FileName).obj</ExecutionDescription>
<ShowOnlyRuleProperties>false</ShowOnlyRuleProperties>
</YASM>
</ItemDefinitionGroup>
-</Project> \ No newline at end of file
+</Project>