- Timestamp:
- Jun 19, 2014, 1:34:15 AM (11 years ago)
- Branches:
- master
- Children:
- 3ea1839
- Parents:
- 883bb5d
- Location:
- client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/main.cpp
r883bb5d r34bd549 11 11 #include <netdb.h> 12 12 #include <cstring> 13 #elif defined MAC 14 #include <netdb.h> 13 15 #endif 14 16 … … 171 173 font = al_load_ttf_font("../pirulen.ttf", 12, 0); 172 174 #elif defined LINUX 175 font = al_load_ttf_font("pirulen.ttf", 12, 0); 176 #elif defined MAC 173 177 font = al_load_ttf_font("pirulen.ttf", 12, 0); 174 178 #endif … … 782 786 #elif defined LINUX 783 787 game = new Game(gameName, "../data/map.txt", &msgProcessor); 788 #elif defined MAC 789 game = new Game(gameName, "../data/map.txt", &msgProcessor); 784 790 #endif 785 791 … … 1303 1309 1304 1310 msgProcessor.sendMessage(&msgTo, &server); 1311 cout << "Sent CREATE_GAME message" << endl; 1305 1312 } 1306 1313 -
client/makefile
r883bb5d r34bd549 1 1 CC = g++ 2 LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` 2 #LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_main-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` 3 # osx needs to link against some extra libraries 4 LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_main-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` -framework AppKit -framework IOKit -framework OpenGL -framework AGL -framework OpenAL 3 5 FLAGS = -Wall -g 4 6 COMMON_PATH = ../common
Note:
See TracChangeset
for help on using the changeset viewer.