-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateSdk.bat
More file actions
17 lines (14 loc) · 750 Bytes
/
CreateSdk.bat
File metadata and controls
17 lines (14 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
REM Automate the creation of an SDK package
REM C#
COPY ..\X64\Release\vJoyInterface.dll ".\c#\x64\vJoyInterface.dll"
COPY ..\X64\Release\vJoyInterfaceWrap.dll ".\c#\x64\vJoyInterfaceWrap.dll"
COPY ..\Win32\Release\vJoyInterface.dll ".\c#\x86\vJoyInterface.dll"
COPY ..\Win32\Release\vJoyInterfaceWrap.dll ".\c#\x86\vJoyInterfaceWrap.dll"
REM Include Files
COPY ..\Inc\public.h .\Inc\public.h
COPY ..\apps\common\vJoyInterface\vjoyinterface.h .\Inc\vjoyinterface.h
REM Library Files
COPY ..\Win32\Release\vJoyInterface.dll .\LIB\vJoyInterface.dll
COPY ..\Win32\Release\vJoyInterface.lib .\LIB\vJoyInterface.lib
COPY ..\X64\Release\vJoyInterface.dll .\LIB\amd64\vJoyInterface.dll
COPY ..\X64\Release\vJoyInterface.lib .\LIB\amd64\vJoyInterface.lib