set up api chain

This commit is contained in:
2024-04-25 15:05:53 +00:00
parent 243156d497
commit 4b5ebaeef4
11 changed files with 26 additions and 11 deletions

2
snapshot/CMakeLists.txt Normal file
View File

@ -0,0 +1,2 @@
add_library(snapshot STATIC src/snapshot.cpp)
target_link_libraries(snapshot libzstd_static)

View File

@ -0,0 +1,4 @@
#ifndef SNAP_SHOT_H
#define SNAP_SHOT_H
#endif // SNAP_SHOT_H

View File

@ -0,0 +1,2 @@
#include "snapshot/snapshot.h"
#include <zstd.h>