diff options
author | Rew <Rew017@hotmail.com> | 2017-04-10 16:06:49 -0400 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2017-04-10 13:06:49 -0700 |
commit | 80423b67b16f563bbcb281f996c7b5cdee96093a (patch) | |
tree | e5ea205a957797d4b7a0bb410a10cd404a6440be /clr.defines.targets | |
parent | ee4ed1ac502f037e9894006ecc8da63f97325694 (diff) | |
download | coreclr-80423b67b16f563bbcb281f996c7b5cdee96093a.tar.gz coreclr-80423b67b16f563bbcb281f996c7b5cdee96093a.tar.bz2 coreclr-80423b67b16f563bbcb281f996c7b5cdee96093a.zip |
CoreLib Build System portability updates (#10839)
Updates to corelib project file for target specific includes. Intended
to ease maintainability of existing targets and clarify necessary work
for new targets.
Diffstat (limited to 'clr.defines.targets')
-rw-r--r-- | clr.defines.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clr.defines.targets b/clr.defines.targets index 6edd968968..2f97c8d681 100644 --- a/clr.defines.targets +++ b/clr.defines.targets @@ -36,5 +36,6 @@ <DefineConstants Condition="'$(FeatureSymDiff)' == 'true'">$(DefineConstants);FEATURE_SYMDIFF</DefineConstants> <DefineConstants Condition="'$(TargetsUnix)' == 'true'">$(DefineConstants);PLATFORM_UNIX</DefineConstants> + <DefineConstants Condition="'$(TargetsWindows)' == 'true'">$(DefineConstants);PLATFORM_WINDOWS</DefineConstants> </PropertyGroup> </Project> |