mirror of
https://github.com/espressif/mbedtls.git
synced 2025-05-09 19:31:18 +08:00
Fix missing include in vs proj files for query programs
This commit is contained in:
parent
cb9c015558
commit
c84a65da9d
@ -18,8 +18,7 @@
|
|||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
<SOURCES>
|
||||||
<ClCompile Include="..\..\programs\<PATHNAME>.c" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="mbedTLS.vcxproj">
|
<ProjectReference Include="mbedTLS.vcxproj">
|
||||||
|
@ -93,8 +93,14 @@ sub gen_app {
|
|||||||
$path =~ s!/!\\!g;
|
$path =~ s!/!\\!g;
|
||||||
(my $appname = $path) =~ s/.*\\//;
|
(my $appname = $path) =~ s/.*\\//;
|
||||||
|
|
||||||
|
my $srcs = "\n <ClCompile Include=\"..\\..\\programs\\$path.c\" \/>
";
|
||||||
|
if( $appname eq "ssl_client2" or $appname eq "ssl_server2" or
|
||||||
|
$appname eq "query_compile_time_config" ) {
|
||||||
|
$srcs .= "\n <ClCompile Include=\"..\\..\\programs\\ssl\\query_config.c\" \/>
";
|
||||||
|
}
|
||||||
|
|
||||||
my $content = $template;
|
my $content = $template;
|
||||||
$content =~ s/<PATHNAME>/$path/g;
|
$content =~ s/<SOURCES>/$srcs/g;
|
||||||
$content =~ s/<APPNAME>/$appname/g;
|
$content =~ s/<APPNAME>/$appname/g;
|
||||||
$content =~ s/<GUID>/$guid/g;
|
$content =~ s/<GUID>/$guid/g;
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\programs\test\query_compile_time_config.c" />
|
<ClCompile Include="..\..\programs\test\query_compile_time_config.c" />
|
||||||
|
<ClCompile Include="..\..\programs\ssl\query_config.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="mbedTLS.vcxproj">
|
<ProjectReference Include="mbedTLS.vcxproj">
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\programs\ssl\ssl_client2.c" />
|
<ClCompile Include="..\..\programs\ssl\ssl_client2.c" />
|
||||||
|
<ClCompile Include="..\..\programs\ssl\query_config.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="mbedTLS.vcxproj">
|
<ProjectReference Include="mbedTLS.vcxproj">
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\programs\ssl\ssl_server2.c" />
|
<ClCompile Include="..\..\programs\ssl\ssl_server2.c" />
|
||||||
|
<ClCompile Include="..\..\programs\ssl\query_config.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="mbedTLS.vcxproj">
|
<ProjectReference Include="mbedTLS.vcxproj">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user