You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
973 B
19 lines
973 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2018 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<!-- This file is used to set configurations that are common to *all* ICU library code (common, i18n, and io). -->
|
|
<!-- Note: These options are for *all* configurations for *all* library projects. -->
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<!-- ICU does not use exceptions in library code. -->
|
|
<PreprocessorDefinitions>
|
|
$(DefineConstants);
|
|
_HAS_EXCEPTIONS=0;
|
|
%(PreprocessorDefinitions)
|
|
</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<!-- The following import will set various settings for compiler Warnings and Errors. -->
|
|
<Import Project="Build.Windows.Library.WarningSettings.ProjectConfiguration.props" />
|
|
</Project>
|