aboutsummaryrefslogtreecommitdiff
path: root/projects/generate.bat
AgeCommit message (Collapse)Author
2020-05-14curl_multibyte: add to curlxMarcel Raad
This will also be needed in the tool and tests. Ref: https://github.com/curl/curl/pull/3758#issuecomment-482197512 Closes https://github.com/curl/curl/pull/3784
2020-03-24copyright: fix out-of-date copyright ranges and missing headersDaniel Stenberg
Reported by the new script 'scripts/copyright.pl'. The script has a regex whitelist for the files that don't need copyright headers. Removed three (mostly usesless) README files from docs/ Closes #5141
2019-11-24projects: Fix Visual Studio projects SSH buildsJay Satiro
- Generate VQUIC and VSSH filenames in Visual Studio project files. Prior to this change generated Visual Studio project configurations that enabled SSH did not build properly. Broken since SSH files were moved to lib/vssh 3 months ago in 5b2d703. Fixes https://github.com/curl/curl/issues/4492 Fixes https://github.com/curl/curl/issues/4630 Closes https://github.com/curl/curl/pull/4607
2018-09-23whitespace fixesViktor Szakats
- replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
2018-01-30build: fix windows build methods for curl_ctype.cJay Satiro
- Fix winbuild and the VS project generator to treat curl_ctype.{c,h} as curlx files since they are required by both src and lib. Follow-up to 4272a0b which added curl_ctype.
2017-12-22build: Added Visual Studio 2017 project filesSteve Holme
2016-11-01generate.bat: Include include/curl in libcurl VS projectsJay Satiro
.. because including those headers helps Visual Studio's Intellisense.
2016-11-01generate.bat: Remove strcase.[ch] from curl tool VS projectsJay Satiro
..because they're no longer needed in the tool build. strcase is still built by the libcurl project and exports curl_str(n)equal which is used by the curl tool. Bug: https://github.com/curl/curl/commit/9363f1a#all_commit_comments
2016-10-31strcasecompare: replaced remaining rawstr.h with strcase.hDan Fandrich
This is a followup to commit 811a693b
2016-02-12generate.bat: Fix comment bug by removing old commentsJay Satiro
Remove NOTES section, it's no longer needed since we aren't setting the errorlevel and more importantly the recently updated URL in the comments is causing some unusual behavior that breaks the script. Closes https://github.com/curl/curl/issues/649
2016-02-04URLs: change more http to httpsViktor Szakats
2016-02-03URLs: change all http:// URLs to https://Daniel Stenberg
2015-08-14generate.bat: Added support for generating only the prerequisite filesSteve Holme
2015-08-14generate.bat: Only call buildconf.bat if it existsSteve Holme
2015-08-14generate.bat: Fixed issues when ran in directories with special charsSteve Holme
2015-08-09generate.bat: Use buildconf.bat for prerequisite file generationSteve Holme
2015-08-08scripts: Always perform setlocal and endlocal calls in pairsSteve Holme
Ensure that there isn't a mismatch between setlocal and endlocal calls, which could have happened due to setlocal being called after certain error conditions were checked for.
2015-08-08scripts: Allow -help to be specified in any argumentSteve Holme
Allow the -help command line argument to be specified in any argument and not just as the first.
2015-08-06generate.bat: Added a check for the presence of a git repositorySteve Holme
2015-08-05generate.bat: Use buildconf.bat for prerequisite file clean-upSteve Holme
2015-08-04generate.bat: Only clean prerequisite files when in ALL modeSteve Holme
2015-08-04generate.bat: Moved error messages out of sub-routinesSteve Holme
2015-08-04generate.bat: More use of lower-case for commands and reserved keywordsSteve Holme
2015-07-28generate.bat: Use lower-case for commands and reserved keywordsSteve Holme
Whilst there are no coding standards for the batch files used in curl, most tend to use lower-case for keywords and upper-case for variables.
2015-07-28build: Added initial VC14 support to generate.batSteve Holme
Visual Studio project files and updates to makefile.am to follow.
2015-07-28build: Renamed curl src Visual Studio project filesSteve Holme
Following commit 957fcd9049 and in preparation for adding the VC14 project files renamed the curl source project files.
2015-04-11build: Generate source prerequisites for Visual Studio in generate.batJay Satiro
Prior to this change Visual Studio builds could fail due to missing prerequisites src/tool_hugehelp.c and include/curl/curlbuild.h. http://curl.haxx.se/mail/lib-2015-04/0034.html
2015-02-26build: Added support to Generate.bat for files in the upcoming vauth folderSteve Holme
2015-02-02build: Added removal of Visual Studio project filesSteve Holme
Added the removal of the locally generated project files so one may revert to a clean repository.
2014-11-05build: Fixed Visual Studio project file generation of strdup.[c|h]Steve Holme
As the curl command-line tool now includes it's own version of strdup(), for platforms that don't have it, fixed up the git respository Visual Studio project file generator to not include the version from lib in the tool project files, rather than having both lib\strdup.[c|h] and src\tool_strdup.[c|h] present.
2014-11-02build: Added optional specific version generation of VC project filesSteve Holme
..when working from the git repository. This is particularly useful for single development environments where the project files for all supported versions of Visual Studio may not be required.
2014-05-22build: Use CURLX_* file lists for Visual Studio curl tool project generationSteve Holme
2014-05-17build: Fixed another tabulation issue in the Visual Studio file generatorSteve Holme
2014-05-11build: Fixed some tabulation issues in the Visual Studio file generatorSteve Holme
2014-05-01build: Fixed Visual Studio project file generator missing some filesSteve Holme
As of commit 6cdd88f22c the Visual Studio project file generator would skip the first and last file from each group of files.
2014-04-30build: Fixed generation when source file names contain spacesSteve Holme
This shouldn't happen with the source files in the repository, but fixed the output when there are spurious files lying around that contain spaces. For example "pop3 - Copy.c" By including the offending source file in the project files the user can then see the file and remove it if necessary.
2014-04-29build: Added VC7 and VC7.1 support to the project file generatorSteve Holme
Note: VC7.1 templates are currently not available.
2014-04-29build: Added VC6 and VC12 support to the project file generatorSteve Holme
2014-04-29build: Added VC11 support to the project file generatorSteve Holme
2014-04-29build: Added VC9 and VC10 support to the project file generatorSteve Holme
2014-04-29build: Added Visual Studio project file generatorSteve Holme
Added a batch file for generating the Visual Studio project files from the new template files.