data.c/.h added to devcpp project. Tile editor runs fine on win32/64.
parent
48574819b8
commit
49ce932ece
|
@ -4,8 +4,8 @@
|
||||||
CPP = g++.exe
|
CPP = g++.exe
|
||||||
CC = gcc.exe
|
CC = gcc.exe
|
||||||
WINDRES = windres.exe
|
WINDRES = windres.exe
|
||||||
OBJ = ../tile_editor/elements.o ../tile_editor/font.o ../tile_editor/main.o ../tile_editor/sdl.o
|
OBJ = ../tile_editor/elements.o ../tile_editor/font.o ../tile_editor/main.o ../tile_editor/sdl.o ../data.o
|
||||||
LINKOBJ = ../tile_editor/elements.o ../tile_editor/font.o ../tile_editor/main.o ../tile_editor/sdl.o
|
LINKOBJ = ../tile_editor/elements.o ../tile_editor/font.o ../tile_editor/main.o ../tile_editor/sdl.o ../data.o
|
||||||
LIBS = -L"C:/Program Files (x86)/Dev-Cpp/MinGW32/lib" -static-libstdc++ -static-libgcc -L"../../SDL-1.2.15/lib" -mwindows -lsdl -lSDL_image -lSDLmain -lws2_32 C:/Windows/System32/ws2_32.dll -g3
|
LIBS = -L"C:/Program Files (x86)/Dev-Cpp/MinGW32/lib" -static-libstdc++ -static-libgcc -L"../../SDL-1.2.15/lib" -mwindows -lsdl -lSDL_image -lSDLmain -lws2_32 C:/Windows/System32/ws2_32.dll -g3
|
||||||
INCS = -I"C:/Program Files (x86)/Dev-Cpp/MinGW32/include" -I"../../SDL-1.2.15/include"
|
INCS = -I"C:/Program Files (x86)/Dev-Cpp/MinGW32/include" -I"../../SDL-1.2.15/include"
|
||||||
CXXINCS = -I"C:/Program Files (x86)/Dev-Cpp/MinGW32/include" -I"../../SDL-1.2.15/include"
|
CXXINCS = -I"C:/Program Files (x86)/Dev-Cpp/MinGW32/include" -I"../../SDL-1.2.15/include"
|
||||||
|
@ -36,3 +36,6 @@ $(BIN): $(OBJ)
|
||||||
|
|
||||||
../tile_editor/sdl.o: ../tile_editor/sdl.c
|
../tile_editor/sdl.o: ../tile_editor/sdl.c
|
||||||
$(CC) -c ../tile_editor/sdl.c -o ../tile_editor/sdl.o $(CFLAGS)
|
$(CC) -c ../tile_editor/sdl.c -o ../tile_editor/sdl.o $(CFLAGS)
|
||||||
|
|
||||||
|
../data.o: ../data.c
|
||||||
|
$(CC) -c ../data.c -o ../data.o $(CFLAGS)
|
||||||
|
|
|
@ -29,7 +29,7 @@ IncludeVersionInfo=0
|
||||||
SupportXPThemes=0
|
SupportXPThemes=0
|
||||||
CompilerSet=0
|
CompilerSet=0
|
||||||
CompilerSettings=0000000000000000001000000
|
CompilerSettings=0000000000000000001000000
|
||||||
UnitCount=9
|
UnitCount=11
|
||||||
|
|
||||||
[VersionInfo]
|
[VersionInfo]
|
||||||
Major=1
|
Major=1
|
||||||
|
@ -51,9 +51,9 @@ AutoIncBuildNr=0
|
||||||
SyncProduct=1
|
SyncProduct=1
|
||||||
|
|
||||||
[Unit11]
|
[Unit11]
|
||||||
FileName=..\player.h
|
FileName=..\data.c
|
||||||
CompileCpp=0
|
CompileCpp=0
|
||||||
Folder=timesynk-sdl
|
Folder=tile_editor
|
||||||
Compile=1
|
Compile=1
|
||||||
Link=1
|
Link=1
|
||||||
Priority=1000
|
Priority=1000
|
||||||
|
@ -350,3 +350,13 @@ Priority=1000
|
||||||
OverrideBuildCmd=0
|
OverrideBuildCmd=0
|
||||||
BuildCmd=
|
BuildCmd=
|
||||||
|
|
||||||
|
[Unit10]
|
||||||
|
FileName=..\data.h
|
||||||
|
CompileCpp=0
|
||||||
|
Folder=tile_editor
|
||||||
|
Compile=1
|
||||||
|
Link=1
|
||||||
|
Priority=1000
|
||||||
|
OverrideBuildCmd=0
|
||||||
|
BuildCmd=
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,22 @@ LeftChar=1
|
||||||
Open=0
|
Open=0
|
||||||
Top=0
|
Top=0
|
||||||
[Editors]
|
[Editors]
|
||||||
Order=
|
Order=-1
|
||||||
|
Focused=-1
|
||||||
[Editor_1]
|
[Editor_1]
|
||||||
Open=0
|
Open=1
|
||||||
Top=0
|
Top=1
|
||||||
|
CursorCol=3
|
||||||
|
CursorRow=354
|
||||||
|
TopLine=324
|
||||||
|
LeftChar=1
|
||||||
[Editor_2]
|
[Editor_2]
|
||||||
Open=0
|
Open=1
|
||||||
Top=0
|
Top=0
|
||||||
|
CursorCol=1
|
||||||
|
CursorRow=1
|
||||||
|
TopLine=1
|
||||||
|
LeftChar=1
|
||||||
[Editor_3]
|
[Editor_3]
|
||||||
Open=0
|
Open=0
|
||||||
Top=0
|
Top=0
|
||||||
|
@ -31,3 +40,9 @@ Top=0
|
||||||
[Editor_8]
|
[Editor_8]
|
||||||
Open=0
|
Open=0
|
||||||
Top=0
|
Top=0
|
||||||
|
[Editor_9]
|
||||||
|
Open=0
|
||||||
|
Top=0
|
||||||
|
[Editor_10]
|
||||||
|
Open=0
|
||||||
|
Top=0
|
||||||
|
|
Loading…
Reference in New Issue