Go to file
yyc12345 72a48b703f feat: add various functions
- Add Win32 CopyFile, MoveFile, DeleteFile functions in WinFctHelper.
- rename FsPathPatch to StdPatch because this namespace will hold all standard library patches in future.
- add polyfill for std:basic_string::starts_with, std::basic_string::ends_with std::basic_string_view::starts_with, std::basic_string_view::ends_with in StdPatch.
- add polyfill for unordered and ordered associative standard library container's contains function in StdPatch.
- documentation and testbench will be fixed in later commits.
2024-08-13 09:38:12 +08:00
.github/workflows refactor: bring char8_t to this library. 2024-06-26 21:04:56 +08:00
cmake chore: update build script. 2024-07-22 13:56:00 +08:00
doc feat: add various functions 2024-08-13 09:38:12 +08:00
script feat: add switch for build script to disable documentation build. 2024-08-05 14:46:59 +08:00
src feat: add various functions 2024-08-13 09:38:12 +08:00
testbench feat: add various functions 2024-08-13 09:38:12 +08:00
.gitattributes fix: fix linux build issue 2024-07-22 22:41:10 +08:00
.gitignore chore: switch to CMake build system. 2024-05-29 23:11:52 +08:00
CMakeLists.txt fix: fix fatal error of ExceptionHelper in x86 environemnt. 2024-07-31 20:32:11 +08:00
LICENSE doc: update README 2024-07-13 22:50:37 +08:00
README.md doc: update README 2024-07-13 22:50:37 +08:00

YYC Commonplace

YYC Commonplace, or YYCCommonplace (abbr. YYCC) is a static library specifically resolving my requirements in C++ and Windows scope.

Usage

For more usage about this library, please build documentation of this project via Doxygen and read it.

And I also highly recommend that you read documentation first before writing with this library.

Build

This project require at least CMake 3.23 to build. We suggest that you only use stable version (tagged commit). The latest commit may still work in progress and not stable.

For Windows builing, you can browse GitHub action script to have a preview. It actually is a simple calling to script file. For other platforms building (e.g. Linux), you can following common builing way of CMake project.