Add libsodium to build

This commit is contained in:
Aditya Kulkarni
2019-01-18 14:38:15 -08:00
parent da4b62be9c
commit 2ccf2b5062
79 changed files with 6428 additions and 0 deletions

33
src/3rdparty/sodium/version.h vendored Normal file
View File

@@ -0,0 +1,33 @@
#ifndef sodium_version_H
#define sodium_version_H
#include "export.h"
#define SODIUM_VERSION_STRING "1.0.16"
#define SODIUM_LIBRARY_VERSION_MAJOR 10
#define SODIUM_LIBRARY_VERSION_MINOR 1
#ifdef __cplusplus
extern "C" {
#endif
SODIUM_EXPORT
const char *sodium_version_string(void);
SODIUM_EXPORT
int sodium_library_version_major(void);
SODIUM_EXPORT
int sodium_library_version_minor(void);
SODIUM_EXPORT
int sodium_library_minimal(void);
#ifdef __cplusplus
}
#endif
#endif