aboutsummaryrefslogtreecommitdiff
path: root/zenstore/zenstore.cpp
blob: d5baf7e268cf8645efa80af938eec779feabf0df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Epic Games, Inc. All Rights Reserved.

#include "zenstore/zenstore.h"

#include <zenstore/basicfile.h>
#include <zenstore/cas.h>
#include <zenstore/gc.h>
#include "chunkbundler.h"
#include "compactcas.h"
#include "filecas.h"

namespace zen {

void
zenstore_forcelinktests()
{
	basicfile_forcelink();
	CAS_forcelink();
	filecas_forcelink();
	compactcas_forcelink();
	gc_forcelink();
	chunkbundler_forcelink();
}

}  // namespace zen