* wip : creating a Swift Package Manager package

* ios : tests ready

* cmake : add ggwave-spm and spm-publish targets

* cosmetics
This commit is contained in:
Georgi Gerganov
2021-01-30 12:38:01 +02:00
committed by GitHub
parent 555495f7cb
commit 2e34d46e02
15 changed files with 61 additions and 25 deletions

View File

@@ -5,16 +5,12 @@
#ifndef GF_H
#define GF_H
#include <stdint.h>
#include <string.h>
#include "poly.hpp"
#if !defined DEBUG && !defined __CC_ARM
#include <stdint.h>
#include <string.h>
#include <assert.h>
#else
#define assert(dummy)
#endif
namespace RS {

View File

@@ -5,14 +5,10 @@
#ifndef POLY_H
#define POLY_H
#include <stdint.h>
#include <string.h>
#if !defined DEBUG && !defined __CC_ARM
#include <assert.h>
#else
#define assert(dummy)
#endif
namespace RS {

View File

@@ -5,17 +5,13 @@
#ifndef RS_HPP
#define RS_HPP
#include <string.h>
#include <stdint.h>
#include "poly.hpp"
#include "gf.hpp"
#if !defined DEBUG && !defined __CC_ARM
#include <assert.h>
#else
#define assert(dummy)
#endif
#include <string.h>
#include <stdint.h>
#include <vector>
namespace RS {