forked from LennyPhoenix/GodotDiscordSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.bat
22 lines (15 loc) · 862 Bytes
/
setup.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
echo [91mBy running this script you agree to the Discord Developers ToS.[37m
echo.
echo [32mDownloading the Discord Game SDK...[37m
curl.exe --output discord_game_sdk.zip --url https://dl-game-sdk.discordapp.net/2.5.6/discord_game_sdk.zip
powershell.exe "Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('discord_game_sdk.zip', 'dsdk');"
mkdir demo\bin\windows-32
mkdir demo\bin\windows-64
copy dsdk\c\discord_game_sdk.h src\discord_game_sdk.h
copy dsdk\lib\x86\discord_game_sdk.dll demo\bin\windows-32\discord_game_sdk.dll
copy dsdk\lib\x86\discord_game_sdk.dll.lib lib\discord_game_sdk.32.lib
copy dsdk\lib\x86_64\discord_game_sdk.dll demo\bin\windows-64\discord_game_sdk.dll
copy dsdk\lib\x86_64\discord_game_sdk.dll.lib lib\discord_game_sdk.64.lib
del discord_game_sdk.zip
RMDIR /S /Q dsdk