2021-04-26 17:03:52 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-09-19 12:48:34 +02:00
|
|
|
project(sdrpp_core)
|
|
|
|
|
|
|
|
# Set compiler options
|
|
|
|
if (MSVC)
|
2020-12-12 05:34:58 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
2020-09-19 12:48:34 +02:00
|
|
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
2021-04-18 19:20:51 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-04-18 19:24:56 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup")
|
2021-04-18 19:12:07 +02:00
|
|
|
else ()
|
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17")
|
|
|
|
endif ()
|
2020-09-20 00:19:39 +02:00
|
|
|
add_definitions(-DSDRPP_IS_CORE)
|
2020-09-19 12:48:34 +02:00
|
|
|
|
|
|
|
# Main code
|
2020-10-23 04:53:48 +02:00
|
|
|
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
|
2020-09-19 12:48:34 +02:00
|
|
|
|
|
|
|
# Add code to dyn lib
|
2020-10-23 04:53:48 +02:00
|
|
|
add_library(sdrpp_core SHARED ${SRC})
|
2020-09-19 12:48:34 +02:00
|
|
|
|
2021-04-26 15:17:24 +02:00
|
|
|
# Set the install prefix
|
|
|
|
target_compile_definitions(sdrpp_core PUBLIC INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}")
|
|
|
|
|
2020-09-19 12:48:34 +02:00
|
|
|
# Include core headers
|
|
|
|
target_include_directories(sdrpp_core PUBLIC "src/")
|
|
|
|
target_include_directories(sdrpp_core PUBLIC "src/imgui")
|
|
|
|
|
2021-08-16 18:49:00 +02:00
|
|
|
if (OPT_OVERRIDE_STD_FILESYSTEM)
|
|
|
|
target_include_directories(sdrpp_core PUBLIC "std_replacement")
|
|
|
|
endif (OPT_OVERRIDE_STD_FILESYSTEM)
|
2020-09-19 12:48:34 +02:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2021-07-16 01:49:33 +02:00
|
|
|
# WinSock2
|
|
|
|
target_link_libraries(sdrpp_core PUBLIC wsock32 ws2_32)
|
|
|
|
|
2020-10-23 04:53:48 +02:00
|
|
|
else()
|
2020-10-23 04:25:02 +02:00
|
|
|
find_package(PkgConfig)
|
2020-10-22 02:28:43 +02:00
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
|
2020-10-23 04:53:48 +02:00
|
|
|
pkg_check_modules(GLEW REQUIRED glew)
|
2020-10-23 04:25:02 +02:00
|
|
|
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}
|
2020-10-23 04:39:20 +02:00
|
|
|
${VOLK_INCLUDE_DIRS}
|
2020-12-22 20:35:31 +01:00
|
|
|
)
|
2020-10-23 04:25:02 +02:00
|
|
|
|
2021-04-29 14:30:11 +02:00
|
|
|
target_link_directories(sdrpp_core PUBLIC
|
|
|
|
${GLEW_LIBRARY_DIRS}
|
|
|
|
${FFTW3_LIBRARY_DIRS}
|
|
|
|
${GLFW3_LIBRARY_DIRS}
|
|
|
|
${VOLK_LIBRARY_DIRS}
|
|
|
|
)
|
|
|
|
|
2020-10-23 04:25:02 +02:00
|
|
|
target_link_libraries(sdrpp_core PUBLIC
|
|
|
|
${OPENGL_LIBRARIES}
|
2020-12-22 20:35:31 +01:00
|
|
|
${GLEW_LIBRARIES}
|
|
|
|
${FFTW3_LIBRARIES}
|
|
|
|
${GLFW3_LIBRARIES}
|
|
|
|
${VOLK_LIBRARIES}
|
|
|
|
)
|
2020-10-23 04:25:02 +02:00
|
|
|
|
2020-10-23 04:53:48 +02:00
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
|
|
target_link_libraries(sdrpp_core PUBLIC stdc++fs)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc -static-libstdc++")
|
|
|
|
endif ()
|
|
|
|
|
2020-10-22 02:28:43 +02:00
|
|
|
endif ()
|
2020-09-19 12:48:34 +02:00
|
|
|
|
|
|
|
set(CORE_FILES ${RUNTIME_OUTPUT_DIRECTORY} PARENT_SCOPE)
|
|
|
|
|
2020-10-22 17:55:49 +02:00
|
|
|
# cmake .. "-DCMAKE_TOOLCHAIN_FILE=C:/Users/Alex/vcpkg/scripts/buildsystems/vcpkg.cmake" -G "Visual Studio 15 2017 Win64"
|
2021-02-11 22:49:33 +01:00
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS sdrpp_core DESTINATION lib)
|