lasp/CMakeLists.txt

62 lines
1.7 KiB
CMake
Raw Normal View History

cmake_minimum_required (VERSION 3.16)
2022-07-25 20:29:42 +00:00
project(LASP LANGUAGES C CXX)
set(LASP_VERSION_MAJOR 1)
set(LASP_VERSION_MINOR 0)
2022-07-20 12:58:48 +00:00
# To allow linking to static libs from other directories
cmake_policy(SET CMP0079 NEW)
2022-07-20 12:58:48 +00:00
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake")
include("BuildType")
2022-07-20 12:58:48 +00:00
include("QueryPythonForPybind11")
# Find the pybind11 package
find_pybind11_python_first()
# This is used for code completion in vim
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
2018-01-29 15:14:50 +00:00
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED)
option(LASP_DOUBLE_PRECISION "Compile as double precision floating point" ON)
option(LASP_HAS_RTAUDIO "Compile with RtAudio Daq backend" ON)
option(LASP_HAS_ULDAQ "Compile with UlDaq backend" ON)
set(LASP_FFT_BACKEND "FFTW" CACHE STRING "FFT Library backend")
set_property(CACHE LASP_FFT_BACKEND PROPERTY STRINGS "FFTW" "FFTPack" "None")
2022-07-20 12:58:48 +00:00
set(PY_FULL_VERSION ${PROJECT_VERSION}${PY_VERSION_SUFFIX})
# Required for PYBIND11
2022-07-20 12:58:48 +00:00
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
if(CMAKE_BUILD_TYPE STREQUAL Debug)
set(LASP_DEBUG True)
else()
set(LASP_DEBUG False)
endif()
2020-10-14 07:42:19 +00:00
# link openblas
set(BLA_VENDOR OpenBLAS)
find_package(BLAS REQUIRED)
2020-10-14 07:42:19 +00:00
# Reasonable maximum to the nfft size, at 48kHz this is 700s of data...
add_definitions(-DLASP_MAX_NFFT=33554432) # 2**25
2018-01-29 15:14:50 +00:00
# ####################################### End of user-adjustable variables section
2022-07-20 12:58:48 +00:00
include(OSSpecific)
2018-01-29 15:14:50 +00:00
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-type-limits")
2022-07-20 12:58:48 +00:00
set(CMAKE_C_FLAGS_RELEASE "-O3 -mfpmath=sse -march=x86-64 -mtune=native \
-fdata-sections -ffunction-sections -fomit-frame-pointer -finline-functions")
2018-01-29 15:14:50 +00:00
# ############################# End compilation flags
2022-07-20 12:58:48 +00:00
add_subdirectory(third_party)
add_subdirectory(src/lasp)