-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
1 changed file
with
14 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
# CubicSDR-WinBuild | ||
CubicSDR Windows Install Builder | ||
|
||
Requirements: | ||
- [Nullsoft Scriptable Install System](https://nsis.sourceforge.io/Download) | ||
|
||
## Requirements: | ||
- [Visual Studio Community 2022](https://visualstudio.microsoft.com/vs/community/) | ||
- [Nullsoft Scriptable Install System](https://nsis.sourceforge.io/Download) | ||
- [7-zip](https://www.7-zip.org/) | ||
- [Python](https://www.python.org/downloads/release/python-3105/) | ||
- [SDRPlay RSP API](https://www.sdrplay.com/software/SDRplay_RSP_API-Windows-3.09.exe) | ||
- [SDRPlay RSP API](https://www.sdrplay.com/software/SDRplay_RSP_API-Windows-3.14.exe) | ||
- [CMake](https://cmake.org/install/) | ||
|
||
Notes: | ||
- Install Python with option 'Add to PATH' or add manually | ||
|
||
Work in progress: | ||
- Digital lab builds | ||
- Automatic github uploads | ||
|
||
## Building via Developer PowerShell for VS2022 | ||
- Clone this repository to the location you want to build and run build script: | ||
- `. .\build.ps1` | ||
- By default it will build type Release, architecture x64, options are: | ||
- `. \build.ps1 Release x64` | ||
- `. \build.ps1 Debug x64` | ||
- `. \build.ps1 Release Win32` | ||
- `. \build.ps1 Debug Win32` | ||
|