mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-18 22:32:44 +00:00
Added beginning of HydraSDR source
This commit is contained in:
18
source_modules/hydrasdr_source/CMakeLists.txt
Normal file
18
source_modules/hydrasdr_source/CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
project(hydrasdr_source)
|
||||
|
||||
file(GLOB SRC "src/*.cpp")
|
||||
|
||||
include(${SDRPP_MODULE_CMAKE})
|
||||
|
||||
if (MSVC)
|
||||
target_link_directories(hydrasdr_source PRIVATE "C:/Program Files/HydraSDR/")
|
||||
|
||||
target_include_directories(hydrasdr_source PUBLIC "C:/Program Files/HydraSDR/include/")
|
||||
|
||||
target_link_libraries(hydrasdr_source PRIVATE hydrasdr)
|
||||
elseif (ANDROID)
|
||||
# TODO
|
||||
else (MSVC)
|
||||
# TODO
|
||||
endif ()
|
||||
Reference in New Issue
Block a user