-
Notifications
You must be signed in to change notification settings - Fork 12
/
CMakeLists.txt
86 lines (76 loc) · 3.23 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
########################################################################
# Project setup
########################################################################
cmake_minimum_required(VERSION 3.1.0)
project(PothosComms CXX C)
if(${CMAKE_PROJECT_NAME} STREQUAL ${PROJECT_NAME})
find_package(Pothos "0.6.0" CONFIG REQUIRED)
else()
find_package(Pothos CONFIG REQUIRED) #in-tree build
endif()
########################################################################
## Feature registration
########################################################################
include(FeatureSummary)
include(CMakeDependentOption)
cmake_dependent_option(ENABLE_COMMS "Enable Pothos Comms component" ON "Pothos_FOUND" OFF)
add_feature_info(Comms ENABLE_COMMS "A collection of DSP/communications blocks")
########################################################################
# json.hpp header
########################################################################
find_path(JSON_HPP_INCLUDE_DIR NAMES json.hpp PATH_SUFFIXES nlohmann)
if (NOT JSON_HPP_INCLUDE_DIR)
message(WARNING "Pothos Comms toolkit requires json.hpp, skipping...")
endif (NOT JSON_HPP_INCLUDE_DIR)
########################################################################
# SIMD dynamic dispatch, if supported by this Pothos build
########################################################################
include(PothosConfigSIMD OPTIONAL RESULT_VARIABLE SIMD_SUPPORTED)
if(SIMD_SUPPORTED)
include(CheckIncludeFileCXX)
set(CMAKE_REQUIRED_INCLUDES ${Pothos_INCLUDE_DIRS})
check_include_file_cxx(Pothos/Util/XSIMDTraits.hpp HAS_POTHOS_XSIMD_TRAITS_HPP)
if(HAS_POTHOS_XSIMD_TRAITS_HPP)
find_package(xsimd)
if(xsimd_FOUND)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
add_definitions(-DPOTHOS_XSIMD)
endif()
endif()
endif()
########################################################################
# Spuce library
########################################################################
if(NOT SPUCE_IN_TREE)
find_package(Spuce CONFIG)
endif(NOT SPUCE_IN_TREE)
if (Spuce_FOUND)
message(STATUS "Spuce_VERSION: ${Spuce_VERSION}")
message(STATUS "Spuce_INCLUDE_DIRS: ${Spuce_INCLUDE_DIRS}")
message(STATUS "Spuce_LIBRARIES: ${Spuce_LIBRARIES}")
if (NOT TARGET spuce)
add_library(spuce INTERFACE)
target_link_libraries(spuce INTERFACE "${Spuce_LIBRARIES}")
target_include_directories(spuce INTERFACE "${Spuce_INCLUDE_DIRS}")
endif()
else (Spuce_FOUND)
message(WARNING "Spuce filter designer library not found...")
endif (Spuce_FOUND)
########################################################################
# Common testing library
########################################################################
add_library(CommsTests INTERFACE)
target_include_directories(CommsTests INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
########################################################################
# Build subdirectories
########################################################################
add_subdirectory(functions)
add_subdirectory(demod)
add_subdirectory(digital)
add_subdirectory(fft)
add_subdirectory(filter)
add_subdirectory(mac)
add_subdirectory(math)
add_subdirectory(utility)
add_subdirectory(waveform)
add_subdirectory(window)