-
-
Notifications
You must be signed in to change notification settings - Fork 581
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add fobossdr_source module and fix network sink crash when the given …
…hostname is invalid
- Loading branch information
1 parent
79dd5bd
commit c2f0e75
Showing
6 changed files
with
419 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
project(fobossdr_source) | ||
|
||
file(GLOB SRC "src/*.cpp") | ||
|
||
include(${SDRPP_MODULE_CMAKE}) | ||
|
||
if (MSVC) | ||
# Lib path | ||
target_link_directories(fobossdr_source PRIVATE "C:/Program Files/libfobos/lib/") | ||
target_include_directories(fobossdr_source PRIVATE "C:/Program Files/libfobos/include/") | ||
target_link_libraries(fobossdr_source PRIVATE fobos) | ||
else (MSVC) | ||
# TODO | ||
endif () |
Oops, something went wrong.