-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use semantic version. Add helper scripts for windows - copy_and_pack.…
…bat and create_solutions.bat
- Loading branch information
Showing
4 changed files
with
29 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -262,3 +262,5 @@ __pycache__/ | |
|
||
# CMake staging builds | ||
build*/ | ||
pack | ||
foo_cuefixer.fb2k-component |
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,13 @@ | ||
@echo off | ||
rem change directory to bat file path | ||
cd %~dp0 | ||
mkdir pack | ||
mkdir pack\arm64 | ||
mkdir pack\x64 | ||
copy buildarm64\src\Release\foo_cuefixer.dll pack\arm64\ | ||
copy build64\src\Release\foo_cuefixer.dll pack\x64\ | ||
copy build32\src\Release\foo_cuefixer.dll pack\ | ||
cd pack | ||
"C:\Program Files\7-Zip\7z.exe" a -mx9 -tzip ..\foo_cuefixer.fb2k-component * | ||
cd .. | ||
pause |
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,13 @@ | ||
@echo off | ||
rem change to your path | ||
set sdk_path="E:\Projects\foobar2000sdk\SDK-2023-09-23" | ||
cd %~dp0 | ||
mkdir build32 | ||
mkdir build64 | ||
mkdir buildarm64 | ||
cd build32 | ||
cmake .. -AWin32 -Dfoobar2000sdk=%sdk_path% | ||
cd ..\build64 | ||
cmake .. -Ax64 -Dfoobar2000sdk=%sdk_path% | ||
cd ..\buildarm64 | ||
cmake .. -AARM64 -Dfoobar2000sdk=%sdk_path% |
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