Skip to content

Commit f36d071

Browse files
committedOct 7, 2019
feat: add rounded border rendering (#174)
1 parent f9acbef commit f36d071

32 files changed

+2593
-1165
lines changed
 

‎build/windows/LCUI-Demo.sln

+24
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_widget_flex_layout", "
2727
EndProject
2828
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_string_render", "test_string_render\test_string_render.vcxproj", "{F5147B94-9980-481C-AEFF-A768B0894174}"
2929
EndProject
30+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_border", "test_border\test_border.vcxproj", "{F278CDB0-2E72-4A20-8A39-5B719C30AD55}"
31+
EndProject
32+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_box_shadow", "test_box_shadow\test_box_shadow.vcxproj", "{83133071-0048-4400-92FD-842751D1EEDB}"
33+
EndProject
3034
Global
3135
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3236
Debug|ARM = Debug|ARM
@@ -162,6 +166,26 @@ Global
162166
{F5147B94-9980-481C-AEFF-A768B0894174}.Release|Win32.Build.0 = Release|Win32
163167
{F5147B94-9980-481C-AEFF-A768B0894174}.Release|x64.ActiveCfg = Release|x64
164168
{F5147B94-9980-481C-AEFF-A768B0894174}.Release|x64.Build.0 = Release|x64
169+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Debug|ARM.ActiveCfg = Debug|Win32
170+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Debug|Win32.ActiveCfg = Debug|Win32
171+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Debug|Win32.Build.0 = Debug|Win32
172+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Debug|x64.ActiveCfg = Debug|x64
173+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Debug|x64.Build.0 = Debug|x64
174+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Release|ARM.ActiveCfg = Release|Win32
175+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Release|Win32.ActiveCfg = Release|Win32
176+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Release|Win32.Build.0 = Release|Win32
177+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Release|x64.ActiveCfg = Release|x64
178+
{F278CDB0-2E72-4A20-8A39-5B719C30AD55}.Release|x64.Build.0 = Release|x64
179+
{83133071-0048-4400-92FD-842751D1EEDB}.Debug|ARM.ActiveCfg = Debug|Win32
180+
{83133071-0048-4400-92FD-842751D1EEDB}.Debug|Win32.ActiveCfg = Debug|Win32
181+
{83133071-0048-4400-92FD-842751D1EEDB}.Debug|Win32.Build.0 = Debug|Win32
182+
{83133071-0048-4400-92FD-842751D1EEDB}.Debug|x64.ActiveCfg = Debug|x64
183+
{83133071-0048-4400-92FD-842751D1EEDB}.Debug|x64.Build.0 = Debug|x64
184+
{83133071-0048-4400-92FD-842751D1EEDB}.Release|ARM.ActiveCfg = Release|Win32
185+
{83133071-0048-4400-92FD-842751D1EEDB}.Release|Win32.ActiveCfg = Release|Win32
186+
{83133071-0048-4400-92FD-842751D1EEDB}.Release|Win32.Build.0 = Release|Win32
187+
{83133071-0048-4400-92FD-842751D1EEDB}.Release|x64.ActiveCfg = Release|x64
188+
{83133071-0048-4400-92FD-842751D1EEDB}.Release|x64.Build.0 = Release|x64
165189
EndGlobalSection
166190
GlobalSection(SolutionProperties) = preSolution
167191
HideSolutionNode = FALSE

‎build/windows/LCUI/LCUI.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
<FunctionLevelLinking>true</FunctionLevelLinking>
191191
<IntrinsicFunctions>true</IntrinsicFunctions>
192192
<PreprocessorDefinitions>LCUI_EXPORTS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
193-
<AdditionalIncludeDirectories>$(SolutionDir)$(ProjectName)\;$(SolutionDir)..\..\include\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\libxml2-lite\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
193+
<AdditionalIncludeDirectories>$(SolutionDir)$(ProjectName)\;$(SolutionDir)..\..\include\;$(SolutionDir)..\..\include\LCUI\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\libxml2-lite\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
194194
<CompileAs>CompileAsC</CompileAs>
195195
<DisableSpecificWarnings>4819;4244;4996</DisableSpecificWarnings>
196196
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
@@ -233,7 +233,7 @@
233233
<FunctionLevelLinking>true</FunctionLevelLinking>
234234
<IntrinsicFunctions>true</IntrinsicFunctions>
235235
<PreprocessorDefinitions>LCUI_EXPORTS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
236-
<AdditionalIncludeDirectories>$(SolutionDir)$(ProjectName)\;$(SolutionDir)..\..\include\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\libxml2-lite\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
236+
<AdditionalIncludeDirectories>$(SolutionDir)$(ProjectName)\;$(SolutionDir)..\..\include\;$(SolutionDir)..\..\include\LCUI\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\;$(SolutionDir)..\..\lcpkg\installed\$(PlatformTarget)-windows\include\libxml2-lite\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
237237
<CompileAs>CompileAsC</CompileAs>
238238
<DisableSpecificWarnings>4819;4244;4996</DisableSpecificWarnings>
239239
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>

‎build/windows/LCUI/LCUI.vcxproj.user

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
<ShowAllFiles>false</ShowAllFiles>
55
</PropertyGroup>
66
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
7-
<LocalDebuggerCommand>$(OutDir)\helloworld.exe</LocalDebuggerCommand>
7+
<LocalDebuggerCommand>$(OutDir)\LCUITest.exe</LocalDebuggerCommand>
88
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
99
<LocalDebuggerWorkingDirectory>$(SolutionDir)..\..\test\</LocalDebuggerWorkingDirectory>
1010
</PropertyGroup>
1111
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
12-
<LocalDebuggerCommand>$(OutDir)\helloworld.exe</LocalDebuggerCommand>
12+
<LocalDebuggerCommand>$(OutDir)\LCUITest.exe</LocalDebuggerCommand>
1313
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
1414
<LocalDebuggerWorkingDirectory>$(SolutionDir)..\..\test\</LocalDebuggerWorkingDirectory>
1515
</PropertyGroup>
1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
17-
<LocalDebuggerCommand>$(OutDir)\helloworld.exe</LocalDebuggerCommand>
17+
<LocalDebuggerCommand>$(OutDir)\LCUITest.exe</LocalDebuggerCommand>
1818
<LocalDebuggerWorkingDirectory>$(SolutionDir)..\..\test\</LocalDebuggerWorkingDirectory>
1919
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
2020
</PropertyGroup>
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
22-
<LocalDebuggerCommand>$(OutDir)\helloworld.exe</LocalDebuggerCommand>
22+
<LocalDebuggerCommand>$(OutDir)\LCUITest.exe</LocalDebuggerCommand>
2323
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
2424
<LocalDebuggerWorkingDirectory>$(SolutionDir)..\..\test\</LocalDebuggerWorkingDirectory>
2525
</PropertyGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<VCProjectVersion>15.0</VCProjectVersion>
23+
<ProjectGuid>{f278cdb0-2e72-4a20-8a39-5b719c30ad55}</ProjectGuid>
24+
<Keyword>Win32Proj</Keyword>
25+
<RootNamespace>test_border</RootNamespace>
26+
<WindowsTargetPlatformVersion>7.0</WindowsTargetPlatformVersion>
27+
</PropertyGroup>
28+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30+
<ConfigurationType>Application</ConfigurationType>
31+
<UseDebugLibraries>true</UseDebugLibraries>
32+
<PlatformToolset>v141_xp</PlatformToolset>
33+
<CharacterSet>Unicode</CharacterSet>
34+
</PropertyGroup>
35+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
36+
<ConfigurationType>Application</ConfigurationType>
37+
<UseDebugLibraries>false</UseDebugLibraries>
38+
<PlatformToolset>v141_xp</PlatformToolset>
39+
<WholeProgramOptimization>true</WholeProgramOptimization>
40+
<CharacterSet>Unicode</CharacterSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
43+
<ConfigurationType>Application</ConfigurationType>
44+
<UseDebugLibraries>true</UseDebugLibraries>
45+
<PlatformToolset>v141_xp</PlatformToolset>
46+
<CharacterSet>Unicode</CharacterSet>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
49+
<ConfigurationType>Application</ConfigurationType>
50+
<UseDebugLibraries>false</UseDebugLibraries>
51+
<PlatformToolset>v141_xp</PlatformToolset>
52+
<WholeProgramOptimization>true</WholeProgramOptimization>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
56+
<ImportGroup Label="ExtensionSettings">
57+
</ImportGroup>
58+
<ImportGroup Label="Shared">
59+
</ImportGroup>
60+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
62+
</ImportGroup>
63+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
64+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65+
</ImportGroup>
66+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
67+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
68+
</ImportGroup>
69+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
70+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
71+
</ImportGroup>
72+
<PropertyGroup Label="UserMacros" />
73+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
74+
<LinkIncremental>false</LinkIncremental>
75+
<OutDir>$(SolutionDir)..\..\bin\$(PlatformTarget)-windows\$(Configuration)\</OutDir>
76+
<IntDir>$(ProjectDir)$(Configuration)\$(Platform)\objs\</IntDir>
77+
</PropertyGroup>
78+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
79+
<LinkIncremental>true</LinkIncremental>
80+
<OutDir>$(SolutionDir)..\..\bin\$(PlatformTarget)-windows\$(Configuration)\</OutDir>
81+
<IntDir>$(ProjectDir)$(Configuration)\$(Platform)\objs\</IntDir>
82+
</PropertyGroup>
83+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
84+
<LinkIncremental>true</LinkIncremental>
85+
<OutDir>$(SolutionDir)..\..\bin\$(PlatformTarget)-windows\$(Configuration)\</OutDir>
86+
<IntDir>$(ProjectDir)$(Configuration)\$(Platform)\objs\</IntDir>
87+
</PropertyGroup>
88+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
89+
<LinkIncremental>false</LinkIncremental>
90+
<OutDir>$(SolutionDir)..\..\bin\$(PlatformTarget)-windows\$(Configuration)\</OutDir>
91+
<IntDir>$(ProjectDir)$(Configuration)\$(Platform)\objs\</IntDir>
92+
</PropertyGroup>
93+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
94+
<ClCompile>
95+
<WarningLevel>Level3</WarningLevel>
96+
<PrecompiledHeader>
97+
</PrecompiledHeader>
98+
<Optimization>MaxSpeed</Optimization>
99+
<FunctionLevelLinking>true</FunctionLevelLinking>
100+
<IntrinsicFunctions>true</IntrinsicFunctions>
101+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
102+
<AdditionalIncludeDirectories>$(SolutionDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
103+
</ClCompile>
104+
<Link>
105+
<SubSystem>Windows</SubSystem>
106+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
107+
<OptimizeReferences>true</OptimizeReferences>
108+
<AdditionalDependencies>LCUI.lib;LCUIMain.lib;kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
109+
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
110+
<IgnoreSpecificDefaultLibraries>
111+
</IgnoreSpecificDefaultLibraries>
112+
</Link>
113+
<PreBuildEvent>
114+
<Command>copy "$(SolutionDir)..\..\test\$(ProjectName).xml" "$(OutDir)"
115+
copy "$(SolutionDir)..\..\test\$(ProjectName).css" "$(OutDir)"
116+
copy "$(SolutionDir)..\..\test\$(ProjectName).xml" "$(ProjectDir)"
117+
copy "$(SolutionDir)..\..\test\$(ProjectName).css" "$(ProjectDir)"</Command>
118+
</PreBuildEvent>
119+
</ItemDefinitionGroup>
120+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
121+
<ClCompile>
122+
<PrecompiledHeader>
123+
</PrecompiledHeader>
124+
<WarningLevel>Level3</WarningLevel>
125+
<Optimization>Disabled</Optimization>
126+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
127+
<AdditionalIncludeDirectories>$(SolutionDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
128+
</ClCompile>
129+
<Link>
130+
<SubSystem>Windows</SubSystem>
131+
<AdditionalDependencies>LCUI.lib;LCUIMain.lib;kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
132+
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
133+
</Link>
134+
<PreBuildEvent>
135+
<Command>copy "$(SolutionDir)..\..\test\$(ProjectName).xml" "$(OutDir)"
136+
copy "$(SolutionDir)..\..\test\$(ProjectName).css" "$(OutDir)"
137+
copy "$(SolutionDir)..\..\test\$(ProjectName).xml" "$(ProjectDir)"
138+
copy "$(SolutionDir)..\..\test\$(ProjectName).css" "$(ProjectDir)"</Command>
139+
</PreBuildEvent>
140+
</ItemDefinitionGroup>
141+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
142+
<ClCompile>
143+
<PrecompiledHeader>
144+
</PrecompiledHeader>
145+
<WarningLevel>Level3</WarningLevel>
146+
<Optimization>Disabled</Optimization>
147+
<PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
148+
<AdditionalIncludeDirectories>$(SolutionDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
149+
</ClCompile>
150+
<Link>
151+
<SubSystem>Windows</SubSystem>
152+
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
153+
<AdditionalDependencies>LCUI.lib;LCUIMain.lib;kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
154+
</Link>
155+
</ItemDefinitionGroup>
156+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
157+
<ClCompile>
158+
<WarningLevel>Level3</WarningLevel>
159+
<PrecompiledHeader>
160+
</PrecompiledHeader>
161+
<Optimization>MaxSpeed</Optimization>
162+
<FunctionLevelLinking>true</FunctionLevelLinking>
163+
<IntrinsicFunctions>true</IntrinsicFunctions>
164+
<PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
165+
<AdditionalIncludeDirectories>$(SolutionDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
166+
</ClCompile>
167+
<Link>
168+
<SubSystem>Windows</SubSystem>
169+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
170+
<OptimizeReferences>true</OptimizeReferences>
171+
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
172+
<AdditionalDependencies>LCUI.lib;LCUIMain.lib;kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
173+
</Link>
174+
</ItemDefinitionGroup>
175+
<ItemGroup>
176+
<None Include="..\..\..\test\test_border.css" />
177+
</ItemGroup>
178+
<ItemGroup>
179+
<ClCompile Include="..\..\..\test\test_border.c" />
180+
</ItemGroup>
181+
<ItemGroup>
182+
<Xml Include="..\..\..\test\test_border.xml" />
183+
</ItemGroup>
184+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
185+
<ImportGroup Label="ExtensionTargets">
186+
</ImportGroup>
187+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="源文件">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="头文件">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="资源文件">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<None Include="..\..\..\test\test_border.css">
19+
<Filter>资源文件</Filter>
20+
</None>
21+
</ItemGroup>
22+
<ItemGroup>
23+
<ClCompile Include="..\..\..\test\test_border.c">
24+
<Filter>源文件</Filter>
25+
</ClCompile>
26+
</ItemGroup>
27+
<ItemGroup>
28+
<Xml Include="..\..\..\test\test_border.xml">
29+
<Filter>资源文件</Filter>
30+
</Xml>
31+
</ItemGroup>
32+
</Project>

0 commit comments

Comments
 (0)