aboutsummaryrefslogtreecommitdiff
path: root/zenserver/vfs.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added shell32.dll to delay load list since it's only needed when no ↵Stefan Boberg2021-10-071-900/+0
| | | | | | directory is specified on the command line Also removed redundant vfs files
* Moved more code into zen namespace, for consistencyStefan Boberg2021-09-201-1/+0
| | | | Also removed snapshot_manifest (remnants of vfs prototype)
* It's not possible to compile out testsStefan Boberg2021-09-201-1/+1
| | | | 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.
* Changed logging implementationStefan Boberg2021-09-151-3/+3
| | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function
* Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵Stefan Boberg2021-09-151-1/+1
| | | | easier to tweak implementation
* Improved VFS feature toggle logicStefan Boberg2021-09-091-1/+1
|
* Added compilation switch for vfs related codeStefan Boberg2021-09-071-0/+1
|
* Compile out experimental VFS code by default (not currently useful/functional)Stefan Boberg2021-09-071-12/+14
|
* Adding zenservice codeStefan Boberg2021-05-111-0/+898