Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
637438f2
Commit
637438f2
authored
10 years ago
by
Steve Holme
Browse files
Options
Downloads
Patches
Plain Diff
build: Added VC7 and VC7.1 support to the project file generator
Note: VC7.1 templates are currently not available.
parent
6cdd88f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
projects/generate.bat
+23
-7
23 additions, 7 deletions
projects/generate.bat
with
23 additions
and
7 deletions
projects/generate.bat
+
23
−
7
View file @
637438f2
...
...
@@ -25,15 +25,25 @@ echo Generating VC6 project files
call
:generate
dsp
Windows
\VC6\src\curlsrc.tmpl
Windows
\VC6\src\curlsrc.dsp
call
:generate
dsp
Windows
\VC6\lib\libcurl.tmpl
Windows
\VC6\lib\libcurl.dsp
echo
.
echo
Generating
VC7
project
files
call
:generate
vcproj1
Windows
\VC7\src\curlsrc.tmpl
Windows
\VC7\src\curlsrc.vcproj
call
:generate
vcproj1
Windows
\VC7\lib\libcurl.tmpl
Windows
\VC7\lib\libcurl.vcproj
echo
.
echo
Generating
VC7
.1
project
files
call
:generate
vcproj1
Windows
\VC7.1\src\curlsrc.tmpl
Windows
\VC7.1\src\curlsrc.vcproj
call
:generate
vcproj1
Windows
\VC7.1\lib\libcurl.tmpl
Windows
\VC7.1\lib\libcurl.vcproj
echo
.
echo
Generating
VC8
project
files
call
:generate
vcproj
Windows
\VC8\src\curlsrc.tmpl
Windows
\VC8\src\curlsrc.vcproj
call
:generate
vcproj
Windows
\VC8\lib\libcurl.tmpl
Windows
\VC8\lib\libcurl.vcproj
call
:generate
vcproj
2
Windows
\VC8\src\curlsrc.tmpl
Windows
\VC8\src\curlsrc.vcproj
call
:generate
vcproj
2
Windows
\VC8\lib\libcurl.tmpl
Windows
\VC8\lib\libcurl.vcproj
echo
.
echo
Generating
VC9
project
files
call
:generate
vcproj
Windows
\VC9\src\curlsrc.tmpl
Windows
\VC9\src\curlsrc.vcproj
call
:generate
vcproj
Windows
\VC9\lib\libcurl.tmpl
Windows
\VC9\lib\libcurl.vcproj
call
:generate
vcproj
2
Windows
\VC9\src\curlsrc.tmpl
Windows
\VC9\src\curlsrc.vcproj
call
:generate
vcproj
2
Windows
\VC9\lib\libcurl.tmpl
Windows
\VC9\lib\libcurl.vcproj
echo
.
echo
Generating
VC10
project
files
...
...
@@ -54,7 +64,8 @@ goto exit
rem Main generate function.
rem
rem %1 - Project Type (dsp, vcproj or vcxproj)
rem %1 - Project Type (dsp for VC6, vcproj1 for VC7 and VC7.1, vcproj2 for VC8 and VC9
rem or vcxproj for VC10, VC11 and VC12)
rem %2 - Input template file
rem %3 - Output project file
rem
...
...
@@ -101,7 +112,8 @@ rem
rem Generates a single file xml element.
rem
rem %1 - Project Type (dsp, vcproj or vcxproj)
rem %1 - Project Type (dsp for VC6, vcproj1 for VC7 and VC7.1, vcproj2 for VC8 and VC9
rem or vcxproj for VC10, VC11 and VC12)
rem %2 - Directory (src, lib or lib\vtls)
rem %3 - Source filename
rem %4 - Output project file
...
...
@@ -119,7 +131,11 @@ rem
echo
.>>
%
4
echo
SOURCE
=
..\..\..\..\
%
2
\
%
3
>>
%
4
echo
#
End
Source
File
>>
%
4
)
else
if
"
%
1"
==
"vcproj"
(
)
else
if
"
%
1"
==
"vcproj1"
(
echo
%TABS%
^<
File
>>
%
4
echo
%TABS%
RelativePath
=
"..\..\..\..\
%
2\
%
3"
^>
>>
%
4
echo
%TABS%
^<
/File
^>
>>
%
4
)
else
if
"
%
1"
==
"vcproj2"
(
echo
%TABS%
^<
File
>>
%
4
echo
%TABS%
RelativePath
=
"..\..\..\..\
%
2\
%
3"
>>
%
4
echo
%TABS%
^>
>>
%
4
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment