forked from TillAlex/ImGui.NET-nativebuild
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathci-build.cmd
More file actions
13 lines (12 loc) · 771 Bytes
/
ci-build.cmd
File metadata and controls
13 lines (12 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
@setlocal
@echo off
call %~dp0build-native.cmd Release x64
copy %~dp0build\x64\Release\cimgui.dll %~dp0build\x64\Release\cimgui.win-x64.dll
copy %~dp0build\x64\Release\cimplot.dll %~dp0build\x64\Release\cimplot.win-x64.dll
copy %~dp0build\x64\Release\cimnodes.dll %~dp0build\x64\Release\cimnodes.win-x64.dll
copy %~dp0build\x64\Release\cimguizmo.dll %~dp0build\x64\Release\cimguizmo.win-x64.dll
call %~dp0build-native.cmd Release x86
copy %~dp0build\x86\Release\cimgui.dll %~dp0build\x86\Release\cimgui.win-x86.dll
copy %~dp0build\x86\Release\cimplot.dll %~dp0build\x86\Release\cimplot.win-x86.dll
copy %~dp0build\x86\Release\cimnodes.dll %~dp0build\x86\Release\cimnodes.win-x86.dll
copy %~dp0build\x86\Release\cimguizmo.dll %~dp0build\x86\Release\cimguizmo.win-x86.dll