aboutsummaryrefslogtreecommitdiff
path: root/windows/msvc/paths.props
diff options
context:
space:
mode:
authorDamien George2017-09-06 13:40:51 +1000
committerDamien George2017-09-06 13:40:51 +1000
commit01dd7804b87d60b2deab16712eccb3b97351a9b7 (patch)
tree1aa21f38a872b8e62a3d4e4f74f68033c6f827e4 /windows/msvc/paths.props
parenta9862b30068fc9df1022f08019fb35aaa5085f64 (diff)
ports: Make new ports/ sub-directory and move all ports there.
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
Diffstat (limited to 'windows/msvc/paths.props')
-rw-r--r--windows/msvc/paths.props45
1 files changed, 0 insertions, 45 deletions
diff --git a/windows/msvc/paths.props b/windows/msvc/paths.props
deleted file mode 100644
index 716698243..000000000
--- a/windows/msvc/paths.props
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <PyPathsIncluded>True</PyPathsIncluded>
-
- <!-- The properties below specify the output directory structure.
- This defaults to, for example for Configuration = Debug and Platform = x64:
-
- micropython [PyBaseDir]
- |- ...
- |- windows [PyWinDir]
- |- ...
- |- micropython.exe
- |- build [PyBuildDir]
- |- Debugx64 [PyOutDir]
- | |- ...
- | |- micropython.exe
- | |- micropython.map
- | |- obj [PyIntDir]
- |- genhdr
-
- Note that the micropython executable will be copied from PyOutDir
- to PyWinDir after each build. -->
-
- <!-- Start from project root -->
- <PyBaseDir>$([System.IO.Path]::GetFullPath(`$(MSBuildThisFileDirectory)..\..`))\</PyBaseDir>
- <PyWinDir>$(PyBaseDir)windows\</PyWinDir>
- <PyBuildDir Condition="'$(PyBuildDir)' == ''">$(PyWinDir)build\</PyBuildDir>
-
- <!-- All include directories needed for uPy -->
- <PyIncDirs>$(PyBaseDir);$(PyWinDir);$(PyBuildDir);$(PyWinDir)msvc</PyIncDirs>
-
- <!-- Within PyBuildDir different subdirectories are used based on configuration and platform.
- By default these are chosen based on the Configuration and Platform properties, but
- this file might be imported by other projects (to figure out where the artifacts go
- or what the include files are) and those projects might already contain conflicting
- Configuration/Platform properties, so allow to override these -->
- <PyPlatform Condition="'$(PyPlatform)' == ''">$(Platform)</PyPlatform>
- <PyConfiguration Condition="'$(PyConfiguration)' == ''">$(Configuration)</PyConfiguration>
-
- <!-- The final destination directories -->
- <PyOutDir>$(PyBuildDir)$(PyConfiguration)$(PyPlatform)\</PyOutDir>
- <PyIntDir>$(PyOutDir)obj\</PyIntDir>
- </PropertyGroup>
-</Project>