Initial commit: infrastructure

This commit is contained in:
Thomas Kolb 2021-10-17 19:25:42 +02:00
commit 0b237a47cb
4 changed files with 53 additions and 0 deletions

1
impl/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

40
impl/CMakeLists.txt Normal file
View File

@ -0,0 +1,40 @@
cmake_minimum_required (VERSION 3.2)
project (hamnet70 VERSION 0.1 LANGUAGES C)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_FLAGS "-Wall -pedantic -Wextra -DDEBUG_LIQUID")
include_directories(src)
# put all .cpp and .h files into the sources variable
set(sources
src/utils.c
src/utils.h
src/main.c
src/packet_mod.h
src/results.h
src/packet_mod.c
src/config.h
src/preamble.h
src/preamble.c
)
include_directories(
${CMAKE_PROJECT_NAME}
)
add_executable(
${CMAKE_PROJECT_NAME}
${sources}
)
# use static linking for liquid, as dynamic linking currently does not work
# with liquid_error_info(). See github issue
# https://github.com/jgaeddert/liquid-dsp/issues/260.
target_link_libraries(
${CMAKE_PROJECT_NAME}
libliquid.a
m
fftw3f
fec
)

6
impl/compile_flags.txt Normal file
View File

@ -0,0 +1,6 @@
-I./src
-Wall
-pedantic
-Wextra
-std=c99
-DDEBUG_LIQUID

6
impl/make.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
mkdir -p build
cd build
cmake ..
make