Initial commit: infrastructure
This commit is contained in:
commit
0b237a47cb
1
impl/.gitignore
vendored
Normal file
1
impl/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
build/
|
40
impl/CMakeLists.txt
Normal file
40
impl/CMakeLists.txt
Normal 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
6
impl/compile_flags.txt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
-I./src
|
||||||
|
-Wall
|
||||||
|
-pedantic
|
||||||
|
-Wextra
|
||||||
|
-std=c99
|
||||||
|
-DDEBUG_LIQUID
|
6
impl/make.sh
Executable file
6
impl/make.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
mkdir -p build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
Loading…
Reference in a new issue