diff options
| author | Stefan Boberg <[email protected]> | 2023-05-02 10:01:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-02 10:01:47 +0200 |
| commit | 075d17f8ada47e990fe94606c3d21df409223465 (patch) | |
| tree | e50549b766a2f3c354798a54ff73404217b4c9af /zenstore/zenstore.cpp | |
| parent | fix: bundle shouldn't append content zip to zen (diff) | |
| download | zen-075d17f8ada47e990fe94606c3d21df409223465.tar.xz zen-075d17f8ada47e990fe94606c3d21df409223465.zip | |
moved source directories into `/src` (#264)
* moved source directories into `/src`
* updated bundle.lua for new `src` path
* moved some docs, icon
* removed old test trees
Diffstat (limited to 'zenstore/zenstore.cpp')
| -rw-r--r-- | zenstore/zenstore.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/zenstore/zenstore.cpp b/zenstore/zenstore.cpp deleted file mode 100644 index d87652fde..000000000 --- a/zenstore/zenstore.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright Epic Games, Inc. All Rights Reserved. - -#include "zenstore/zenstore.h" - -#if ZEN_WITH_TESTS - -# include <zenstore/blockstore.h> -# include <zenstore/gc.h> -# include <zenstore/hashkeyset.h> -# include <zenutil/basicfile.h> - -# include "cas.h" -# include "compactcas.h" -# include "filecas.h" - -namespace zen { - -void -zenstore_forcelinktests() -{ - basicfile_forcelink(); - CAS_forcelink(); - filecas_forcelink(); - blockstore_forcelink(); - compactcas_forcelink(); - gc_forcelink(); - hashkeyset_forcelink(); -} - -} // namespace zen - -#endif |