aboutsummaryrefslogtreecommitdiff
path: root/zen/zen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add catch2 support (#101)Stefan Boberg2022-05-201-3/+2
| | | | | | | Added option to use catch2 for unit tests Currently both doctest and catch2 are supported via some compatibility macros. doctest is the default, and ZEN_USE_CATCH2 needs to be defined to switch to catch2. Our goal is to evaluate how well catch2 works and switch to catch2 if everything pans out since UE5 now supports using catch2 for unit tests.
* Add pre-commit config (#69)Joe Kirchoff2022-04-051-0/+2
| | | | | | | * Add .pre-commit-config.yaml * format all using pre-commit clang-format hook * Add pre-commit to inject unreal header comment * Remove prepare_commit.bat & update CODING.md * Remove check-added-large-files, add headers before clang-format
* Fixed up compile errors if mimalloc use is disabledMartin Ridgers2022-01-141-1/+5
|
* Merged main.Per Larsson2021-12-141-2/+8
|\
| * Only Windows-based terminals need VT100/ANSI support enablingMartin Ridgers2021-12-021-0/+2
| |
| * Missing return statementMartin Ridgers2021-12-021-1/+5
| |
| * Use StrCaseCompare() instead of Windows-only _stricmp()Martin Ridgers2021-10-251-1/+1
| |
* | zen: eliminated unused deploy commandStefan Boberg2021-11-171-3/+0
|/
* zen: added print/printpackage subcommands to help in debugging or inspecting ↵Stefan Boberg2021-10-011-12/+17
| | | | CbObject data generally
* clang-formatStefan Boberg2021-09-201-1/+1
|
* trivial: include cleanupStefan Boberg2021-09-201-2/+1
|
* It's not possible to compile out testsStefan Boberg2021-09-201-28/+28
| | | | Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly.
* clang-formatStefan Boberg2021-09-171-3/+2
|
* Added namespace scopes to more includes for better consistencyStefan Boberg2021-09-171-32/+18
|
* Added explicit logging initialization to main() of standalone executables, ↵Stefan Boberg2021-09-151-0/+2
| | | | to make things work with the new default logger shadowing changes
* Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵Stefan Boberg2021-09-151-1/+1
| | | | easier to tweak implementation
* added 'zen drop' command to drop cache buckets onlineStefan Boberg2021-08-171-0/+3
| | | | also cleaned up the server side implementation a bit
* Basic implementation of zen top/ps (currently identical but won't be) ↵Stefan Boberg2021-08-091-0/+2
| | | | functionality
* Added some new management commandsStefan Boberg2021-08-071-9/+23
|
* Added stub code for 'top' command (no implementation yet - awaiting some ↵Stefan Boberg2021-06-181-0/+3
| | | | vcpkg dependencies)
* Adding zenservice codeStefan Boberg2021-05-111-0/+300