Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/TCLAP
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2021-11-25 22:36:18 +0300
committerFormerLurker <hochgebe@gmail.com>2021-11-25 22:36:18 +0300
commit9d1d644013ea74e89ac81f42006b115474cf955e (patch)
treeb35b72771f470e3af304cc60d3558957180eb162 /TCLAP
parent274b33a225485571a012471e997738e437607fcc (diff)
Clean up error correction and debug parameters for the console applications. Update readme.md.
Diffstat (limited to 'TCLAP')
-rw-r--r--TCLAP/TCLAP.vcxproj1
-rw-r--r--TCLAP/TCLAP.vcxproj.filters3
-rw-r--r--TCLAP/tclap/tclap_version.h3
3 files changed, 7 insertions, 0 deletions
diff --git a/TCLAP/TCLAP.vcxproj b/TCLAP/TCLAP.vcxproj
index 6b577ac..e6563e5 100644
--- a/TCLAP/TCLAP.vcxproj
+++ b/TCLAP/TCLAP.vcxproj
@@ -219,6 +219,7 @@
<ClInclude Include="tclap\StandardTraits.h" />
<ClInclude Include="tclap\StdOutput.h" />
<ClInclude Include="tclap\SwitchArg.h" />
+ <ClInclude Include="tclap\tclap_version.h" />
<ClInclude Include="tclap\UnlabeledMultiArg.h" />
<ClInclude Include="tclap\UnlabeledValueArg.h" />
<ClInclude Include="tclap\ValueArg.h" />
diff --git a/TCLAP/TCLAP.vcxproj.filters b/TCLAP/TCLAP.vcxproj.filters
index 3b2bed8..b9cc9ab 100644
--- a/TCLAP/TCLAP.vcxproj.filters
+++ b/TCLAP/TCLAP.vcxproj.filters
@@ -98,5 +98,8 @@
<ClInclude Include="tclap\ZshCompletionOutput.h">
<Filter>Header Files</Filter>
</ClInclude>
+ <ClInclude Include="tclap\tclap_version.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
</ItemGroup>
</Project> \ No newline at end of file
diff --git a/TCLAP/tclap/tclap_version.h b/TCLAP/tclap/tclap_version.h
new file mode 100644
index 0000000..ab366e8
--- /dev/null
+++ b/TCLAP/tclap/tclap_version.h
@@ -0,0 +1,3 @@
+#pragma once
+#define TCLAP_VERSION_STRING "1.4"
+#define TCLAP_COPYRIGHT_STRING "TCLAP: a templatized c++ command line parser, Copyright(C) 2017-2021 Google LLC, Copyright(C) 2012-2016 Daniel Aarno, Copyright(C) 2003-2012 Michael E. Smoot."