hamnet70/impl/CMakeLists.txt

41 lines
750 B
CMake

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
)