Deleted SlimDX; returned pre-build event to copy appropriate DevIL version

This commit is contained in:
ZZYZX 2019-12-16 00:20:48 +02:00
parent eafce14a9a
commit bd6d21773e
8 changed files with 13 additions and 57639 deletions

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1509,5 +1509,10 @@
</ItemGroup>
<ItemGroup />
<PropertyGroup>
<PreBuildEvent>echo Current Output Directory: %25cd%25
echo Copying platform-appropriate DevIL.dll file.
copy /Y ..\DevIL\$(PlatformName)\DevIL.dll .\
echo Copying platform-appropriate Updater.ini.
copy /Y ..\UpdaterConfig\Updater-$(PlatformName).ini Updater.ini</PreBuildEvent>
</PropertyGroup>
</Project>

View file

@ -92,6 +92,14 @@ msbuild "Source\Core\Builder.csproj" /t:Rebuild /p:Configuration=Release /p:Plat
IF %ERRORLEVEL% NEQ 0 GOTO ERRORFAIL
IF NOT EXIST "Build\Builder.exe" GOTO FILEFAIL
ECHO.
ECHO Compiling BuilderNative component...
ECHO.
IF EXIST "Build\BuilderNative.dll" DEL /F /Q "Build\BuilderNative.dll" > NUL
msbuild "Source\Native\BuilderNative.vcxproj" /t:Rebuild /p:Configuration=Release /p:Platform=%PLATFORM% /v:minimal
IF %ERRORLEVEL% NEQ 0 GOTO ERRORFAIL
IF NOT EXIST "Build\BuilderNative.dll" GOTO FILEFAIL
ECHO.
ECHO Compiling Automap Mode plugin...
ECHO.