forked from AgoraIO/Basic-Video-Call
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
windows update to 3.0.1 and qt azure pipeline
- Loading branch information
Showing
22 changed files
with
6,194 additions
and
5,017 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 |
---|---|---|
|
@@ -352,4 +352,5 @@ ASALocalRun/ | |
*.exe | ||
*.out | ||
*.app | ||
sdk/ | ||
sdk/ | ||
libs/ |
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
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,51 @@ | ||
set sdkversion=small | ||
|
||
set Machine=%~1 | ||
set absolute_path=%~2 | ||
cd %absolute_path% | ||
|
||
if %sdkversion% == origin ( exit ) | ||
|
||
|
||
if %sdkversion% == small ( | ||
set sdkinclude=libs\include | ||
set sdkdll=libs\x86 | ||
set sdklib=libs\x86 | ||
if %Machine% == x64 ( | ||
set sdkdll=libs\x86_64 | ||
set sdklib=libs\x86_64 | ||
) | ||
) | ||
|
||
if not exist sdk ( | ||
mkdir sdk | ||
) | ||
|
||
if exist sdk ( | ||
pushd sdk | ||
if not exist dll ( | ||
mkdir dll | ||
) | ||
|
||
if not exist lib ( | ||
mkdir lib | ||
) | ||
if not exist include ( | ||
mkdir include | ||
) | ||
popd | ||
) | ||
|
||
if %sdkversion% == small ( | ||
if exist %sdkinclude% ( | ||
copy %sdkinclude%\*.h sdk\include | ||
) | ||
|
||
if exist %sdklib% ( | ||
copy %sdklib%\*.lib sdk\lib /y | ||
) | ||
if exist %sdkdll% ( | ||
copy %sdkdll%\*.dll sdk\dll /y | ||
) | ||
) | ||
pause |
Oops, something went wrong.