Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
mbedtls
Commits
024694e7
Commit
024694e7
authored
Oct 30, 2018
by
Andres Amaya Garcia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing include in vs proj files for query programs
parent
cb6b6dcd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
3 deletions
+11
-3
scripts/data_files/vs2010-app-template.vcxproj
scripts/data_files/vs2010-app-template.vcxproj
+1
-2
scripts/generate_visualc_files.pl
scripts/generate_visualc_files.pl
+7
-1
visualc/VS2010/query_compile_time_config.vcxproj
visualc/VS2010/query_compile_time_config.vcxproj
+1
-0
visualc/VS2010/ssl_client2.vcxproj
visualc/VS2010/ssl_client2.vcxproj
+1
-0
visualc/VS2010/ssl_server2.vcxproj
visualc/VS2010/ssl_server2.vcxproj
+1
-0
No files found.
scripts/data_files/vs2010-app-template.vcxproj
View file @
024694e7
...
@@ -18,8 +18,7 @@
...
@@ -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"
>
...
...
scripts/generate_visualc_files.pl
View file @
024694e7
...
@@ -93,8 +93,14 @@ sub gen_app {
...
@@ -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
;
...
...
visualc/VS2010/query_compile_time_config.vcxproj
View file @
024694e7
...
@@ -20,6 +20,7 @@
...
@@ -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"
>
...
...
visualc/VS2010/ssl_client2.vcxproj
View file @
024694e7
...
@@ -20,6 +20,7 @@
...
@@ -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"
>
...
...
visualc/VS2010/ssl_server2.vcxproj
View file @
024694e7
...
@@ -20,6 +20,7 @@
...
@@ -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"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment