-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement a full screen memcpy optimization.
publish wincam 0.0.3
- Loading branch information
1 parent
bdf9571
commit e02d76f
Showing
5 changed files
with
68 additions
and
39 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,3 +1,8 @@ | ||
call src/build.cmd | ||
pushd %~dp0\src | ||
call build.cmd | ||
if ERRORLEVEL 1 goto :eof | ||
popd | ||
if ERRORLEVEL 1 goto :eof | ||
python -m build --outdir dist | ||
if ERRORLEVEL 1 goto :eof | ||
python -m twine upload --repository pypi dist/* |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
@echo off | ||
|
||
cd ~dp0 | ||
|
||
msbuild /target:restore /p:Configuration=Release "/p:Platform=x64" ScreenCapture.sln | ||
if ERRORLEVEL 1 goto :eof | ||
|
||
msbuild /target:rebuild /p:Configuration=Release "/p:Platform=x64" ScreenCapture.sln | ||
|
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