mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 10:47:34 +01:00
110 lines
3.0 KiB
CMake
110 lines
3.0 KiB
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(sdrpp_core)
|
|
|
|
add_subdirectory("libcorrect/")
|
|
|
|
# Main code
|
|
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
|
|
|
|
add_definitions(-DSDRPP_IS_CORE)
|
|
if (MSVC)
|
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
endif ()
|
|
|
|
# Add code to dyn lib
|
|
add_library(sdrpp_core SHARED ${SRC})
|
|
|
|
# Set compiler options
|
|
if (MSVC)
|
|
target_compile_options(sdrpp_core PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
target_compile_options(sdrpp_core PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
target_link_options(sdrpp_core PRIVATE -mmacosx-version-min=10.10)
|
|
else ()
|
|
target_compile_options(sdrpp_core PRIVATE -O3 -std=c++17)
|
|
endif ()
|
|
|
|
|
|
# Set the install prefix
|
|
target_compile_definitions(sdrpp_core PUBLIC INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}")
|
|
|
|
# Include core headers
|
|
target_include_directories(sdrpp_core PUBLIC "src/")
|
|
target_include_directories(sdrpp_core PUBLIC "src/imgui")
|
|
|
|
# Link to linkcorrect
|
|
target_include_directories(sdrpp_core PUBLIC "libcorrect/include")
|
|
target_link_libraries(sdrpp_core PUBLIC correct_static)
|
|
|
|
if (OPT_OVERRIDE_STD_FILESYSTEM)
|
|
target_include_directories(sdrpp_core PUBLIC "std_replacement")
|
|
endif (OPT_OVERRIDE_STD_FILESYSTEM)
|
|
|
|
if (MSVC)
|
|
# Lib path
|
|
target_link_directories(sdrpp_core PUBLIC "C:/Program Files/PothosSDR/lib/")
|
|
|
|
# Misc headers
|
|
target_include_directories(sdrpp_core PUBLIC "C:/Program Files/PothosSDR/include/")
|
|
|
|
# Volk
|
|
target_link_libraries(sdrpp_core PUBLIC volk)
|
|
|
|
# Glew
|
|
find_package(GLEW REQUIRED)
|
|
target_link_libraries(sdrpp_core PUBLIC GLEW::GLEW)
|
|
|
|
# GLFW3
|
|
find_package(glfw3 CONFIG REQUIRED)
|
|
target_link_libraries(sdrpp_core PUBLIC glfw)
|
|
|
|
# FFTW3
|
|
find_package(FFTW3f CONFIG REQUIRED)
|
|
target_link_libraries(sdrpp_core PUBLIC FFTW3::fftw3f)
|
|
|
|
# WinSock2
|
|
target_link_libraries(sdrpp_core PUBLIC wsock32 ws2_32)
|
|
|
|
else()
|
|
find_package(PkgConfig)
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
pkg_check_modules(GLEW REQUIRED glew)
|
|
pkg_check_modules(FFTW3 REQUIRED fftw3f)
|
|
pkg_check_modules(VOLK REQUIRED volk)
|
|
pkg_check_modules(GLFW3 REQUIRED glfw3)
|
|
|
|
target_include_directories(sdrpp_core PUBLIC
|
|
${GLEW_INCLUDE_DIRS}
|
|
${FFTW3_INCLUDE_DIRS}
|
|
${GLFW3_INCLUDE_DIRS}
|
|
${VOLK_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_directories(sdrpp_core PUBLIC
|
|
${GLEW_LIBRARY_DIRS}
|
|
${FFTW3_LIBRARY_DIRS}
|
|
${GLFW3_LIBRARY_DIRS}
|
|
${VOLK_LIBRARY_DIRS}
|
|
)
|
|
|
|
target_link_libraries(sdrpp_core PUBLIC
|
|
${OPENGL_LIBRARIES}
|
|
${GLEW_LIBRARIES}
|
|
${FFTW3_LIBRARIES}
|
|
${GLFW3_LIBRARIES}
|
|
${VOLK_LIBRARIES}
|
|
)
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
target_link_libraries(sdrpp_core PUBLIC stdc++fs)
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
set(CORE_FILES ${RUNTIME_OUTPUT_DIRECTORY} PARENT_SCOPE)
|
|
|
|
# cmake .. "-DCMAKE_TOOLCHAIN_FILE=C:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake"
|
|
|
|
# Install directives
|
|
install(TARGETS sdrpp_core DESTINATION lib) |