~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to win32/renamelibSDL.bat

  • Committer: SwagTron
  • Date: 2019-03-03 20:57:16 UTC
  • Revision ID: swagtron-20190303205716-nk32wtrusb3tum54
As far as I am aware, compiling 2.9 sty+ct+ap was incredibly difficult and impossible without using older versions merged with the latest revision (thanks to Nelg's help). Created a proper win32 folder, a readme file, and made it simple to compile for windows.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@echo off
 
2
REM This batch file is used to solve the libSDL.a no such file or directory issue.
 
3
 
 
4
SET DIST_DIR_BASE=dist
 
5
SET DEBUG_DIR_BASE=debug
 
6
SET DIST_DIR=..\..\%DIST_DIR_BASE%
 
7
SET DEBUG_DIR=..\..\%DEBUG_DIR_BASE%
 
8
 
 
9
echo Moving to dist
 
10
cd %DIST_DIR%
 
11
echo Seeing if libSDL.dll.a exist
 
12
if exist libSDL.dll.a (
 
13
        echo Renaming...
 
14
        ren libSDL.dll.a libSDL.a
 
15
        ) else (
 
16
echo libSDL.dll.a does not exist.
 
17
        )
 
18
 
 
19
 
 
20
 
 
21
 
 
22
echo Moving to debug
 
23
cd ..\debug
 
24
 
 
25
echo Seeing if libSDL.dll.a exist
 
26
if exist libSDL.dll.a (
 
27
        echo Renaming...
 
28
        ren libSDL.dll.a libSDL.a
 
29
        ) else (
 
30
echo libSDL.dll.a does not exist.
 
31
        )
 
32
 
 
33
 
 
34
 
 
35
 
 
36
echo done!
 
37
pause