-
-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ryzerth
committed
Dec 24, 2020
1 parent
b21f8ab
commit d83da38
Showing
3 changed files
with
64 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
mkdir sdrpp_windows_x64 | ||
|
||
# Copy root | ||
cp -Recurse root/* sdrpp_windows_x64/ | ||
|
||
# Copy core | ||
cp build/Release/* sdrpp_windows_x64/ | ||
cp 'C:/Program Files/PothosSDR/bin/volk.dll' sdrpp_windows_x64/ | ||
|
||
# Copy modules | ||
cp build/radio/Release/radio.dll sdrpp_windows_x64/modules/ | ||
|
||
cp build/recorder/Release/recorder.dll sdrpp_windows_x64/modules/ | ||
|
||
cp build/airspyhf_source/Release/airspyhf_source.dll sdrpp_windows_x64/modules/ | ||
cp 'C:/Program Files/PothosSDR/bin/airspyhf.dll' sdrpp_windows_x64/ | ||
|
||
cp build/plutosdr_source/Release/plutosdr_source.dll sdrpp_windows_x64/modules/ | ||
cp 'C:/Program Files/PothosSDR/bin/libiio.dll' sdrpp_windows_x64/ | ||
cp 'C:/Program Files/PothosSDR/bin/libad9361.dll' sdrpp_windows_x64/ | ||
|
||
cp build/rtl_tcp_source/Release/rtl_tcp_source.dll sdrpp_windows_x64/modules/ | ||
|
||
cp build/soapy_source/Release/soapy_source.dll sdrpp_windows_x64/modules/ | ||
|
||
cp build/audio_sink/Release/audio_sink.dll sdrpp_windows_x64/modules/ | ||
cp build/audio_sink/Release/portaudio.dll sdrpp_windows_x64/ | ||
|
||
Compress-Archive -Path sdrpp_windows_x64/ -DestinationPath sdrpp_windows_x64.zip | ||
|
||
rm -Force -Recurse sdrpp_windows_x64 |