Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mbedtls
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
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
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
3 deletions
+11
-3
vs2010-app-template.vcxproj
scripts/data_files/vs2010-app-template.vcxproj
+1
-2
generate_visualc_files.pl
scripts/generate_visualc_files.pl
+7
-1
query_compile_time_config.vcxproj
visualc/VS2010/query_compile_time_config.vcxproj
+1
-0
ssl_client2.vcxproj
visualc/VS2010/ssl_client2.vcxproj
+1
-0
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 @@
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\programs\<PATHNAME>.c"
/>
<ItemGroup>
<SOURCES>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"mbedTLS.vcxproj"
>
...
...
scripts/generate_visualc_files.pl
View file @
024694e7
...
...
@@ -93,8 +93,14 @@ sub gen_app {
$path =~ s!/!\\!g;
(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
;
$content =~ s/<
PATHNAME>/$path
/g;
$content
=~
s/<
SOURCES>/$srcs
/g
;
$content
=~
s/<APPNAME>/$appname/g
;
$content
=~
s/<GUID>/$guid/g
;
...
...
visualc/VS2010/query_compile_time_config.vcxproj
View file @
024694e7
...
...
@@ -20,6 +20,7 @@
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\programs\test\query_compile_time_config.c"
/>
<ClCompile
Include=
"..\..\programs\ssl\query_config.c"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"mbedTLS.vcxproj"
>
...
...
visualc/VS2010/ssl_client2.vcxproj
View file @
024694e7
...
...
@@ -20,6 +20,7 @@
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\programs\ssl\ssl_client2.c"
/>
<ClCompile
Include=
"..\..\programs\ssl\query_config.c"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"mbedTLS.vcxproj"
>
...
...
visualc/VS2010/ssl_server2.vcxproj
View file @
024694e7
...
...
@@ -20,6 +20,7 @@
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"..\..\programs\ssl\ssl_server2.c"
/>
<ClCompile
Include=
"..\..\programs\ssl\query_config.c"
/>
</ItemGroup>
<ItemGroup>
<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