summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIbrahim Esmat <iesmat@microsoft.com>2017-07-24 19:09:00 (GMT)
committerIbrahim Esmat <iesmat@microsoft.com>2017-07-24 19:09:00 (GMT)
commit696fe750f247bb4cadbbf8be6970e15af67e1e4b (patch)
treeb9062887c314026c0b8d0245cca25a9b862d6706
parent990d7e365e97fa5f700aebd97e5ec699a6f69976 (diff)
downloadSCons-696fe750f247bb4cadbbf8be6970e15af67e1e4b.zip
SCons-696fe750f247bb4cadbbf8be6970e15af67e1e4b.tar.gz
SCons-696fe750f247bb4cadbbf8be6970e15af67e1e4b.tar.bz2
Change UWP_APP to be MSVC_UWP_APP
-rw-r--r--src/engine/SCons/Tool/MSCommon/vc.py2
-rw-r--r--src/engine/SCons/Tool/msvc.xml4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/SCons/Tool/MSCommon/vc.py b/src/engine/SCons/Tool/MSCommon/vc.py
index c0a1043..4126314 100644
--- a/src/engine/SCons/Tool/MSCommon/vc.py
+++ b/src/engine/SCons/Tool/MSCommon/vc.py
@@ -439,7 +439,7 @@ def msvc_find_valid_batch_script(env,version):
maj, min = msvc_version_to_maj_min(version)
# VS2015+
if maj >= 14:
- if env.get('UWP_APP') == '1':
+ if env.get('MSVC_UWP_APP') == '1':
# Initialize environment variables with store/universal paths
arg += ' store'
diff --git a/src/engine/SCons/Tool/msvc.xml b/src/engine/SCons/Tool/msvc.xml
index 18f4fb6..1823a89 100644
--- a/src/engine/SCons/Tool/msvc.xml
+++ b/src/engine/SCons/Tool/msvc.xml
@@ -442,14 +442,14 @@ For example, if you want to compile 64-bit binaries, you would set
</summary>
</cvar>
-<cvar name="UWP_APP">
+<cvar name="MSVC_UWP_APP">
<summary>
<para>
Build libraries for a Universal Windows Platform (UWP) Application.
</para>
<para>
-If &cv-UWP_APP; is set, the Visual Studio environment will be set up to point
+If &cv-MSVC_UWP_APP; is set, the Visual Studio environment will be set up to point
to the Windows Store compatible libraries and Visual Studio runtimes. In doing so,
any libraries that are built will be able to be used in a UWP App and published
to the Windows Store.