-
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.
chore: CI build both 32 bit and 64 bit binary for windows.
chore: update CMakeLists.txt, build windows binary statically, no DLLs again. chore: update README.md chore: update rppi_config.yaml, default no proxy and no mirror set chore: build_ninja.bat and build_msvc.bat for easy building jobs in windows. chore: update .gitignore
- Loading branch information
Showing
7 changed files
with
88 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
build/ | ||
build*/ | ||
ninja/ | ||
.cache |
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,10 @@ | ||
cmake -B build . | ||
cmake --build build --config Release | ||
cmake -B build32 . -A Win32 | ||
cmake --build build32 --config Release | ||
mkdir rppi_get | ||
copy build\Release\rppi_get.exe .\rppi_get\rppi_get_x64.exe | ||
copy build32\Release\rppi_get.exe .\rppi_get\ | ||
copy rppi_config.yaml .\rppi_get\ | ||
copy LICENSE .\rppi_get\ | ||
copy README.md .\rppi_get\ |
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,7 @@ | ||
cmake -B ninja . -G Ninja -DCMAKE_BUILD_TYPE=Release | ||
cmake --build ninja --config Release | ||
mkdir rppi_get | ||
copy ninja\rppi_get.exe .\rppi_get\ | ||
copy rppi_config.yaml .\rppi_get\ | ||
copy LICENSE .\rppi_get\ | ||
copy README.md .\rppi_get\ |
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