129 lines
3.9 KiB
CMake
129 lines
3.9 KiB
CMake
cmake_minimum_required (VERSION 3.0)
|
|
project(beamforming)
|
|
|
|
# Whether we want to use blas yes or no
|
|
set(LASP_USE_BLAS TRUE)
|
|
# set(LASP_USE_BLAS FALSE)
|
|
|
|
set(LASP_FLOAT double)
|
|
# set(LASP_FLOAT float)
|
|
|
|
add_definitions(-DLASP_PARALLEL)
|
|
add_definitions(-DLASP_MAX_NUM_THREADS=8)
|
|
|
|
add_definitions(-DLASP_MAX_NUM_CHANNELS=80)
|
|
|
|
# Reasonable maximum to the nfft size, at 48kHz this is 700s of data..
|
|
add_definitions(-DLASP_MAX_NFFT=33554432) # 2**25
|
|
|
|
# ####################################### End of user-adjustable variables section
|
|
|
|
add_definitions(-D_REENTRANT)
|
|
|
|
|
|
if(LASP_FLOAT STREQUAL "double")
|
|
add_definitions(-DLASP_FLOAT=64)
|
|
add_definitions(-DLASP_DOUBLE_PRECISION)
|
|
else()
|
|
add_definitions(-DLASP_FLOAT=32)
|
|
endif(LASP_FLOAT STREQUAL "double")
|
|
|
|
|
|
if(NOT DEFINED LASP_DEBUG)
|
|
message(FATAL_ERROR "LASP_DEBUG flag not defined. Please set -DLASP_DEBUG=TRUE or -DLASP_DEBUG=FALSE")
|
|
endif(NOT DEFINED LASP_DEBUG)
|
|
|
|
# ##################### END Cmake variables converted to a macro
|
|
set(Python_ADDITIONAL_VERSIONS "3")
|
|
# #################### Setting definitions and debug-specific compilation flags
|
|
|
|
if(LASP_DEBUG)
|
|
set(TRACERNAME LASPTracer)
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
message("Building debug code")
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
add_definitions(-DLASP_DEBUG=1)
|
|
add_definitions(-DTRACERNAME=${TRACERNAME})
|
|
add_definitions(-DDEBUG)
|
|
add_definitions(-DTRACER=1)
|
|
|
|
set(CYTHON_VARIABLES "#cython: boundscheck=True")
|
|
# This will produce html files
|
|
set(CYTHON_ANNOTATE ON)
|
|
# Add the __FILENAME__ macro
|
|
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__FILENAME__='\"$(subst ${CMAKE_SOURCE_DIR}/,,$(abspath $<))\"'")
|
|
else()
|
|
message("Building release code")
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
set(CYTHON_ANNOTATE OFF)
|
|
set(CYTHON_NO_DOCSTRINGS ON)
|
|
set(CYTHON_VARIABLES "#cython: boundscheck=False,wraparound=False,embedsignature=False,emit_code_comments=False")
|
|
# Strip unnecessary symbols
|
|
# set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--gc-sections")
|
|
# set(CMAKE_MODULE_LINKER_FLAGS "-Wl,--gc-sections")
|
|
|
|
add_definitions(-DTRACER=0 -DNDEBUG)
|
|
endif(LASP_DEBUG)
|
|
|
|
# The last argument here takes care of calling SIGABRT when an integer overflow
|
|
# occures.
|
|
############################## General compilation flags (independent of debug mode, windows or linux)
|
|
set(CYTHON_EXTRA_C_FLAGS "-Wno-sign-compare -Wno-cpp -Wno-implicit-fallthrough\
|
|
-Wno-incompatible-pointer-types -Wno-strict-aliasing")
|
|
|
|
# General make flags
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -std=c11 -Wall -Wextra -Wno-type-limits \
|
|
-Werror=implicit-function-declaration -Werror=incompatible-pointer-types \
|
|
-Werror=return-type")
|
|
|
|
# Debug make flags
|
|
set(CMAKE_C_FLAGS_DEBUG "-g" )
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O2 -mfpmath=sse -march=x86-64 -mtune=native \
|
|
-fdata-sections -ffunction-sections -fomit-frame-pointer -finline-functions")
|
|
|
|
# set(CMAKE_C_FLAGS_RELEASE "-O2 -march=native -mtune=native -fomit-frame-pointer")
|
|
|
|
if(LASP_USE_BLAS)
|
|
add_definitions(-DLASP_USE_BLAS=1)
|
|
else()
|
|
add_definitions(-DLASP_USE_BLAS=0)
|
|
endif(LASP_USE_BLAS)
|
|
|
|
# ############################# End compilation flags
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
set(win32 true)
|
|
else()
|
|
set(win32 false)
|
|
endif(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
|
|
add_subdirectory(fftpack)
|
|
include_directories(
|
|
fftpack
|
|
lasp/c
|
|
)
|
|
add_subdirectory(lasp)
|
|
add_subdirectory(test)
|
|
|
|
if (PYTHON)
|
|
# set(SETUP_PY_IN "${CMAKE_CURRENT_SOURCE_DIR}/setup.py.in")
|
|
set(SETUP_PY "${CMAKE_CURRENT_BINARY_DIR}/setup.py")
|
|
set(DEPS "${CMAKE_CURRENT_SOURCE_DIR}/lasp/*.py")
|
|
set(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/build/timestamp")
|
|
|
|
# configure_file(${SETUP_PY_IN} ${SETUP_PY})
|
|
|
|
add_custom_command(OUTPUT ${OUTPUT}
|
|
COMMAND ${PYTHON} ${SETUP_PY} build
|
|
COMMAND ${CMAKE_COMMAND} -E touch ${OUTPUT}
|
|
DEPENDS ${DEPS})
|
|
|
|
add_custom_target(target ALL DEPENDS ${OUTPUT})
|
|
|
|
install(CODE "execute_process(COMMAND ${PYTHON} ${SETUP_PY} install)")
|
|
endif()
|
|
|
|
|
|
############################## End compiler settings
|