diff --git a/examples/build/codeblocks/ftp.cbp b/examples/build/codeblocks/ftp.cbp deleted file mode 100644 index 0c6d96cc5..000000000 --- a/examples/build/codeblocks/ftp.cbp +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/opengl.cbp b/examples/build/codeblocks/opengl.cbp deleted file mode 100644 index bc4e95d70..000000000 --- a/examples/build/codeblocks/opengl.cbp +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/pong.cbp b/examples/build/codeblocks/pong.cbp deleted file mode 100644 index 990fa2e55..000000000 --- a/examples/build/codeblocks/pong.cbp +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/shader.cbp b/examples/build/codeblocks/shader.cbp deleted file mode 100644 index e50077eeb..000000000 --- a/examples/build/codeblocks/shader.cbp +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/sockets.cbp b/examples/build/codeblocks/sockets.cbp deleted file mode 100644 index 0604db413..000000000 --- a/examples/build/codeblocks/sockets.cbp +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/sound-capture.cbp b/examples/build/codeblocks/sound-capture.cbp deleted file mode 100644 index de054106d..000000000 --- a/examples/build/codeblocks/sound-capture.cbp +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/sound.cbp b/examples/build/codeblocks/sound.cbp deleted file mode 100644 index 12b9f140b..000000000 --- a/examples/build/codeblocks/sound.cbp +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/voip.cbp b/examples/build/codeblocks/voip.cbp deleted file mode 100644 index 826fa3b8d..000000000 --- a/examples/build/codeblocks/voip.cbp +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/win32.cbp b/examples/build/codeblocks/win32.cbp deleted file mode 100644 index a9e792e26..000000000 --- a/examples/build/codeblocks/win32.cbp +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - diff --git a/examples/build/codeblocks/window.cbp b/examples/build/codeblocks/window.cbp deleted file mode 100644 index c67e0770f..000000000 --- a/examples/build/codeblocks/window.cbp +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - diff --git a/examples/build/make/Makefile b/examples/build/make/Makefile deleted file mode 100644 index 882eb9d8b..000000000 --- a/examples/build/make/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -export SRCROOT = ../.. -export CPP = g++ -export CFLAGS = -W -Wall -ansi -g -O2 -DNDEBUG -I../../include -export EXAMPLES = ftp opengl pong shader sockets sound sound_capture voip window X11 - -all: $(EXAMPLES) - -$(EXAMPLES): - $(MAKE) -f Makefile.$@ - -clean mrproper: - for example in $(EXAMPLES); do $(MAKE) $@ -f Makefile.$${example}; done - -.PHONY: clean mrproper - diff --git a/examples/build/make/Makefile.X11 b/examples/build/make/Makefile.X11 deleted file mode 100644 index 160232af9..000000000 --- a/examples/build/make/Makefile.X11 +++ /dev/null @@ -1,20 +0,0 @@ -EXE = X11 -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-window -lsfml2-system -lGLU -lGL -lX11 - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.ftp b/examples/build/make/Makefile.ftp deleted file mode 100644 index 23123e439..000000000 --- a/examples/build/make/Makefile.ftp +++ /dev/null @@ -1,20 +0,0 @@ -EXE = ftp -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-network -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.opengl b/examples/build/make/Makefile.opengl deleted file mode 100644 index cf99bcdb9..000000000 --- a/examples/build/make/Makefile.opengl +++ /dev/null @@ -1,21 +0,0 @@ -EXE = opengl -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-graphics -lsfml2-window -lsfml2-system -lGLU -lGL - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) - diff --git a/examples/build/make/Makefile.pong b/examples/build/make/Makefile.pong deleted file mode 100644 index 693072db4..000000000 --- a/examples/build/make/Makefile.pong +++ /dev/null @@ -1,20 +0,0 @@ -EXE = pong -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-audio -lsfml2-graphics -lsfml2-window -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.shader b/examples/build/make/Makefile.shader deleted file mode 100644 index 2b9eeba55..000000000 --- a/examples/build/make/Makefile.shader +++ /dev/null @@ -1,20 +0,0 @@ -EXE = shader -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-graphics -lsfml2-window -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.sockets b/examples/build/make/Makefile.sockets deleted file mode 100644 index 5131baf12..000000000 --- a/examples/build/make/Makefile.sockets +++ /dev/null @@ -1,20 +0,0 @@ -EXE = sockets -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-network -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.sound b/examples/build/make/Makefile.sound deleted file mode 100644 index 8ad0faa42..000000000 --- a/examples/build/make/Makefile.sound +++ /dev/null @@ -1,20 +0,0 @@ -EXE = sound -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-audio -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.sound_capture b/examples/build/make/Makefile.sound_capture deleted file mode 100644 index 98ce1c8cd..000000000 --- a/examples/build/make/Makefile.sound_capture +++ /dev/null @@ -1,20 +0,0 @@ -EXE = sound_capture -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-audio -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.voip b/examples/build/make/Makefile.voip deleted file mode 100644 index 57838d101..000000000 --- a/examples/build/make/Makefile.voip +++ /dev/null @@ -1,20 +0,0 @@ -EXE = voip -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-audio -lsfml2-network -lsfml2-system - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/make/Makefile.window b/examples/build/make/Makefile.window deleted file mode 100644 index ccccc4683..000000000 --- a/examples/build/make/Makefile.window +++ /dev/null @@ -1,20 +0,0 @@ -EXE = window -SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp) -OBJ = $(SRC:.cpp=.o) -LDFLAGS = -lsfml2-window -lsfml2-system -lGLU -lGL - -all: $(EXE) - -$(EXE): $(OBJ) - $(CPP) -o $(SRCROOT)/$(EXE)/$(EXE) $(OBJ) $(LDFLAGS) - -$(OBJ): %.o: %.cpp - $(CPP) -o $@ -c $< $(CFLAGS) - -.PHONY: clean mrproper - -clean: - @rm -rf $(OBJ) - -mrproper: clean - @rm -rf $(SRCROOT)/$(EXE)/$(EXE) diff --git a/examples/build/vc2005/ftp.vcproj b/examples/build/vc2005/ftp.vcproj deleted file mode 100644 index ea06f7575..000000000 --- a/examples/build/vc2005/ftp.vcproj +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/opengl.vcproj b/examples/build/vc2005/opengl.vcproj deleted file mode 100644 index 20a248085..000000000 --- a/examples/build/vc2005/opengl.vcproj +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/pong.vcproj b/examples/build/vc2005/pong.vcproj deleted file mode 100644 index f76745711..000000000 --- a/examples/build/vc2005/pong.vcproj +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/shader.vcproj b/examples/build/vc2005/shader.vcproj deleted file mode 100644 index 2f52c0dea..000000000 --- a/examples/build/vc2005/shader.vcproj +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/sockets.vcproj b/examples/build/vc2005/sockets.vcproj deleted file mode 100644 index fb0269631..000000000 --- a/examples/build/vc2005/sockets.vcproj +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/sound-capture.vcproj b/examples/build/vc2005/sound-capture.vcproj deleted file mode 100644 index 003eb7784..000000000 --- a/examples/build/vc2005/sound-capture.vcproj +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/sound.vcproj b/examples/build/vc2005/sound.vcproj deleted file mode 100644 index ce719bb7a..000000000 --- a/examples/build/vc2005/sound.vcproj +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/voip.vcproj b/examples/build/vc2005/voip.vcproj deleted file mode 100644 index 9f63e2ee0..000000000 --- a/examples/build/vc2005/voip.vcproj +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/win32.vcproj b/examples/build/vc2005/win32.vcproj deleted file mode 100644 index 868c10297..000000000 --- a/examples/build/vc2005/win32.vcproj +++ /dev/null @@ -1,365 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2005/window.vcproj b/examples/build/vc2005/window.vcproj deleted file mode 100644 index a1e4ac17d..000000000 --- a/examples/build/vc2005/window.vcproj +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/ftp.vcproj b/examples/build/vc2008/ftp.vcproj deleted file mode 100644 index f5ec5cd77..000000000 --- a/examples/build/vc2008/ftp.vcproj +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/opengl.vcproj b/examples/build/vc2008/opengl.vcproj deleted file mode 100644 index d9b13275f..000000000 --- a/examples/build/vc2008/opengl.vcproj +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/pong.vcproj b/examples/build/vc2008/pong.vcproj deleted file mode 100644 index dbb22b87a..000000000 --- a/examples/build/vc2008/pong.vcproj +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/shader.vcproj b/examples/build/vc2008/shader.vcproj deleted file mode 100644 index 977638088..000000000 --- a/examples/build/vc2008/shader.vcproj +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/sockets.vcproj b/examples/build/vc2008/sockets.vcproj deleted file mode 100644 index 685b8b40e..000000000 --- a/examples/build/vc2008/sockets.vcproj +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/sound-capture.vcproj b/examples/build/vc2008/sound-capture.vcproj deleted file mode 100644 index 044c50ecb..000000000 --- a/examples/build/vc2008/sound-capture.vcproj +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/sound.vcproj b/examples/build/vc2008/sound.vcproj deleted file mode 100644 index c2aeaef24..000000000 --- a/examples/build/vc2008/sound.vcproj +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/voip.vcproj b/examples/build/vc2008/voip.vcproj deleted file mode 100644 index 6e85d51fe..000000000 --- a/examples/build/vc2008/voip.vcproj +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/win32.vcproj b/examples/build/vc2008/win32.vcproj deleted file mode 100644 index 9dd465600..000000000 --- a/examples/build/vc2008/win32.vcproj +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/vc2008/window.vcproj b/examples/build/vc2008/window.vcproj deleted file mode 100644 index bd327e3d8..000000000 --- a/examples/build/vc2008/window.vcproj +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/build/xcode/opengl-Info.plist b/examples/build/xcode/opengl-Info.plist deleted file mode 100644 index 2da151bb5..000000000 --- a/examples/build/xcode/opengl-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - com.yourcompany.${PRODUCT_NAME:identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/examples/build/xcode/pong-Info.plist b/examples/build/xcode/pong-Info.plist deleted file mode 100644 index 2da151bb5..000000000 --- a/examples/build/xcode/pong-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - com.yourcompany.${PRODUCT_NAME:identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/examples/build/xcode/post-fx-Info.plist b/examples/build/xcode/post-fx-Info.plist deleted file mode 100644 index 2da151bb5..000000000 --- a/examples/build/xcode/post-fx-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - com.yourcompany.${PRODUCT_NAME:identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/examples/build/xcode/samples.xcodeproj/project.pbxproj b/examples/build/xcode/samples.xcodeproj/project.pbxproj deleted file mode 100644 index 21862ded6..000000000 --- a/examples/build/xcode/samples.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1392 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXAggregateTarget section */ - A07D7E600EE82D33006712A3 /* All */ = { - isa = PBXAggregateTarget; - buildConfigurationList = A07D7E720EE82D5E006712A3 /* Build configuration list for PBXAggregateTarget "All" */; - buildPhases = ( - ); - dependencies = ( - A07D7E640EE82D47006712A3 /* PBXTargetDependency */, - A07D7E660EE82D47006712A3 /* PBXTargetDependency */, - A07D7E680EE82D47006712A3 /* PBXTargetDependency */, - A07D7F190EE832C2006712A3 /* PBXTargetDependency */, - A07D7F1B0EE832C2006712A3 /* PBXTargetDependency */, - A07D7F1D0EE832C2006712A3 /* PBXTargetDependency */, - A07D7F1F0EE832C2006712A3 /* PBXTargetDependency */, - A07D7F210EE832C2006712A3 /* PBXTargetDependency */, - A07D7F230EE832C2006712A3 /* PBXTargetDependency */, - ); - name = All; - productName = All; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - A07D7E330EE82C0A006712A3 /* Ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DDA0EE82B93006712A3 /* Ftp.cpp */; }; - A07D7E340EE82C0F006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7E350EE82C0F006712A3 /* sfml-network.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6B0EE82B6F006712A3 /* sfml-network.framework */; }; - A07D7E420EE82C35006712A3 /* OpenGL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DDF0EE82B93006712A3 /* OpenGL.cpp */; }; - A07D7E430EE82C3B006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7E440EE82C3C006712A3 /* sfml-window.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6E0EE82B6F006712A3 /* sfml-window.framework */; }; - A07D7E450EE82C55006712A3 /* sfml-graphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6C0EE82B6F006712A3 /* sfml-graphics.framework */; }; - A07D7E500EE82C78006712A3 /* Pong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DE20EE82B93006712A3 /* Pong.cpp */; }; - A07D7E510EE82C84006712A3 /* sfml-audio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6A0EE82B6F006712A3 /* sfml-audio.framework */; }; - A07D7E520EE82C85006712A3 /* sfml-graphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6C0EE82B6F006712A3 /* sfml-graphics.framework */; }; - A07D7E530EE82C86006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7E540EE82C87006712A3 /* sfml-window.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6E0EE82B6F006712A3 /* sfml-window.framework */; }; - A07D7E5A0EE82CB0006712A3 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7E590EE82CB0006712A3 /* OpenGL.framework */; }; - A07D7E740EE82D6B006712A3 /* PostFX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DE50EE82B93006712A3 /* PostFX.cpp */; }; - A07D7E750EE82D71006712A3 /* sfml-graphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6C0EE82B6F006712A3 /* sfml-graphics.framework */; }; - A07D7E760EE82D74006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7E770EE82D75006712A3 /* sfml-window.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6E0EE82B6F006712A3 /* sfml-window.framework */; }; - A07D7E9F0EE82F2A006712A3 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DED0EE82B93006712A3 /* Sockets.cpp */; }; - A07D7EA00EE82F2A006712A3 /* TCP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DEE0EE82B93006712A3 /* TCP.cpp */; }; - A07D7EA10EE82F2B006712A3 /* UDP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DEF0EE82B93006712A3 /* UDP.cpp */; }; - A07D7EA20EE82F2F006712A3 /* sfml-network.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6B0EE82B6F006712A3 /* sfml-network.framework */; }; - A07D7EAF0EE82F80006712A3 /* Sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DF30EE82B93006712A3 /* Sound.cpp */; }; - A07D7EB00EE82F86006712A3 /* sfml-audio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6A0EE82B6F006712A3 /* sfml-audio.framework */; }; - A07D7EB20EE82F8D006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7EC30EE83035006712A3 /* SoundCapture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DF70EE82B93006712A3 /* SoundCapture.cpp */; }; - A07D7EC40EE8303D006712A3 /* sfml-audio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6A0EE82B6F006712A3 /* sfml-audio.framework */; }; - A07D7EC60EE83044006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7ED40EE830DB006712A3 /* Client.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DF90EE82B93006712A3 /* Client.cpp */; }; - A07D7ED50EE830DB006712A3 /* Server.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DFB0EE82B93006712A3 /* Server.cpp */; }; - A07D7ED60EE830DC006712A3 /* VoIP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7DFC0EE82B93006712A3 /* VoIP.cpp */; }; - A07D7ED80EE830E7006712A3 /* sfml-audio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6A0EE82B6F006712A3 /* sfml-audio.framework */; }; - A07D7ED90EE830EA006712A3 /* sfml-network.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6B0EE82B6F006712A3 /* sfml-network.framework */; }; - A07D7EDB0EE830F3006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; - A07D7EEA0EE83171006712A3 /* Window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A07D7E010EE82B93006712A3 /* Window.cpp */; }; - A07D7EEB0EE83174006712A3 /* sfml-window.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6E0EE82B6F006712A3 /* sfml-window.framework */; }; - A07D7EED0EE8317B006712A3 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7E590EE82CB0006712A3 /* OpenGL.framework */; }; - A07D7EEF0EE83181006712A3 /* sfml-system.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - A07D7E630EE82D47006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7E2E0EE82C04006712A3; - remoteInfo = ftp; - }; - A07D7E650EE82D47006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7E390EE82C1A006712A3; - remoteInfo = opengl; - }; - A07D7E670EE82D47006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7E490EE82C68006712A3; - remoteInfo = pong; - }; - A07D7F180EE832C2006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7E6C0EE82D5D006712A3; - remoteInfo = "post-fx"; - }; - A07D7F1A0EE832C2006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7E9A0EE82F0A006712A3; - remoteInfo = sockets; - }; - A07D7F1C0EE832C2006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7EAA0EE82F74006712A3; - remoteInfo = sound; - }; - A07D7F1E0EE832C2006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7EBE0EE8302C006712A3; - remoteInfo = sound_capture; - }; - A07D7F200EE832C2006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7ECF0EE830D3006712A3; - remoteInfo = voip; - }; - A07D7F220EE832C2006712A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = A07D7D530EE82B1A006712A3 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A07D7EE30EE83167006712A3; - remoteInfo = window; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - A07D7D6A0EE82B6F006712A3 /* sfml-audio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "sfml-audio.framework"; path = "../../../lib/sfml-audio.framework"; sourceTree = ""; }; - A07D7D6B0EE82B6F006712A3 /* sfml-network.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "sfml-network.framework"; path = "../../../lib/sfml-network.framework"; sourceTree = ""; }; - A07D7D6C0EE82B6F006712A3 /* sfml-graphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "sfml-graphics.framework"; path = "../../../lib/sfml-graphics.framework"; sourceTree = ""; }; - A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "sfml-system.framework"; path = "../../../lib/sfml-system.framework"; sourceTree = ""; }; - A07D7D6E0EE82B6F006712A3 /* sfml-window.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "sfml-window.framework"; path = "../../../lib/sfml-window.framework"; sourceTree = ""; }; - A07D7D6F0EE82B6F006712A3 /* SFML.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SFML.framework; path = ../../../lib/SFML.framework; sourceTree = ""; }; - A07D7DDA0EE82B93006712A3 /* Ftp.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Ftp.cpp; sourceTree = ""; }; - A07D7DDF0EE82B93006712A3 /* OpenGL.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = OpenGL.cpp; sourceTree = ""; }; - A07D7DE20EE82B93006712A3 /* Pong.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Pong.cpp; sourceTree = ""; }; - A07D7DE50EE82B93006712A3 /* PostFX.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PostFX.cpp; sourceTree = ""; }; - A07D7DED0EE82B93006712A3 /* Sockets.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Sockets.cpp; sourceTree = ""; }; - A07D7DEE0EE82B93006712A3 /* TCP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TCP.cpp; sourceTree = ""; }; - A07D7DEF0EE82B93006712A3 /* UDP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = UDP.cpp; sourceTree = ""; }; - A07D7DF30EE82B93006712A3 /* Sound.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Sound.cpp; sourceTree = ""; }; - A07D7DF70EE82B93006712A3 /* SoundCapture.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SoundCapture.cpp; sourceTree = ""; }; - A07D7DF90EE82B93006712A3 /* Client.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Client.cpp; sourceTree = ""; }; - A07D7DFB0EE82B93006712A3 /* Server.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Server.cpp; sourceTree = ""; }; - A07D7DFC0EE82B93006712A3 /* VoIP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = VoIP.cpp; sourceTree = ""; }; - A07D7E010EE82B93006712A3 /* Window.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Window.cpp; sourceTree = ""; }; - A07D7E2F0EE82C04006712A3 /* ftp */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ftp; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7E3A0EE82C1A006712A3 /* opengl.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = opengl.app; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7E3C0EE82C1A006712A3 /* opengl-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "opengl-Info.plist"; sourceTree = ""; }; - A07D7E4A0EE82C68006712A3 /* pong.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = pong.app; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7E4C0EE82C68006712A3 /* pong-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "pong-Info.plist"; sourceTree = ""; }; - A07D7E590EE82CB0006712A3 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; - A07D7E6D0EE82D5D006712A3 /* post-fx.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "post-fx.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7E6F0EE82D5D006712A3 /* post-fx-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "post-fx-Info.plist"; sourceTree = ""; }; - A07D7E9B0EE82F0A006712A3 /* sockets */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = sockets; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7EAB0EE82F74006712A3 /* sound */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = sound; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7EBF0EE8302C006712A3 /* sound_capture */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = sound_capture; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7ED00EE830D3006712A3 /* voip */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = voip; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7EE40EE83167006712A3 /* window.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = window.app; sourceTree = BUILT_PRODUCTS_DIR; }; - A07D7EE60EE83167006712A3 /* window-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "window-Info.plist"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - A07D7E2D0EE82C04006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E340EE82C0F006712A3 /* sfml-system.framework in Frameworks */, - A07D7E350EE82C0F006712A3 /* sfml-network.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E380EE82C1A006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E430EE82C3B006712A3 /* sfml-system.framework in Frameworks */, - A07D7E440EE82C3C006712A3 /* sfml-window.framework in Frameworks */, - A07D7E450EE82C55006712A3 /* sfml-graphics.framework in Frameworks */, - A07D7E5A0EE82CB0006712A3 /* OpenGL.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E480EE82C68006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E510EE82C84006712A3 /* sfml-audio.framework in Frameworks */, - A07D7E520EE82C85006712A3 /* sfml-graphics.framework in Frameworks */, - A07D7E530EE82C86006712A3 /* sfml-system.framework in Frameworks */, - A07D7E540EE82C87006712A3 /* sfml-window.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E6B0EE82D5D006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E750EE82D71006712A3 /* sfml-graphics.framework in Frameworks */, - A07D7E760EE82D74006712A3 /* sfml-system.framework in Frameworks */, - A07D7E770EE82D75006712A3 /* sfml-window.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E990EE82F0A006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EA20EE82F2F006712A3 /* sfml-network.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EA90EE82F74006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EB00EE82F86006712A3 /* sfml-audio.framework in Frameworks */, - A07D7EB20EE82F8D006712A3 /* sfml-system.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EBD0EE8302C006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EC40EE8303D006712A3 /* sfml-audio.framework in Frameworks */, - A07D7EC60EE83044006712A3 /* sfml-system.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7ECE0EE830D3006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7ED80EE830E7006712A3 /* sfml-audio.framework in Frameworks */, - A07D7ED90EE830EA006712A3 /* sfml-network.framework in Frameworks */, - A07D7EDB0EE830F3006712A3 /* sfml-system.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EE20EE83167006712A3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EEB0EE83174006712A3 /* sfml-window.framework in Frameworks */, - A07D7EED0EE8317B006712A3 /* OpenGL.framework in Frameworks */, - A07D7EEF0EE83181006712A3 /* sfml-system.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - A07D7D510EE82B1A006712A3 = { - isa = PBXGroup; - children = ( - A07D7D650EE82B3F006712A3 /* Sources */, - A07D7F170EE832AD006712A3 /* Resources */, - A07D7D660EE82B42006712A3 /* Frameworks */, - A07D7D600EE82B34006712A3 /* Products */, - ); - sourceTree = ""; - }; - A07D7D600EE82B34006712A3 /* Products */ = { - isa = PBXGroup; - children = ( - A07D7E2F0EE82C04006712A3 /* ftp */, - A07D7E3A0EE82C1A006712A3 /* opengl.app */, - A07D7E4A0EE82C68006712A3 /* pong.app */, - A07D7E6D0EE82D5D006712A3 /* post-fx.app */, - A07D7E9B0EE82F0A006712A3 /* sockets */, - A07D7EAB0EE82F74006712A3 /* sound */, - A07D7EBF0EE8302C006712A3 /* sound_capture */, - A07D7ED00EE830D3006712A3 /* voip */, - A07D7EE40EE83167006712A3 /* window.app */, - ); - name = Products; - sourceTree = ""; - }; - A07D7D650EE82B3F006712A3 /* Sources */ = { - isa = PBXGroup; - children = ( - A07D7DD90EE82B93006712A3 /* ftp */, - A07D7DDD0EE82B93006712A3 /* opengl */, - A07D7DE00EE82B93006712A3 /* pong */, - A07D7DE30EE82B93006712A3 /* post-fx */, - A07D7DEB0EE82B93006712A3 /* sockets */, - A07D7DF00EE82B93006712A3 /* sound */, - A07D7DF50EE82B93006712A3 /* sound_capture */, - A07D7DF80EE82B93006712A3 /* voip */, - A07D7DFF0EE82B93006712A3 /* window */, - ); - name = Sources; - sourceTree = ""; - }; - A07D7D660EE82B42006712A3 /* Frameworks */ = { - isa = PBXGroup; - children = ( - A07D7E590EE82CB0006712A3 /* OpenGL.framework */, - A07D7D6A0EE82B6F006712A3 /* sfml-audio.framework */, - A07D7D6B0EE82B6F006712A3 /* sfml-network.framework */, - A07D7D6C0EE82B6F006712A3 /* sfml-graphics.framework */, - A07D7D6D0EE82B6F006712A3 /* sfml-system.framework */, - A07D7D6E0EE82B6F006712A3 /* sfml-window.framework */, - A07D7D6F0EE82B6F006712A3 /* SFML.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - A07D7DD90EE82B93006712A3 /* ftp */ = { - isa = PBXGroup; - children = ( - A07D7DDA0EE82B93006712A3 /* Ftp.cpp */, - ); - name = ftp; - path = ../../ftp; - sourceTree = SOURCE_ROOT; - }; - A07D7DDD0EE82B93006712A3 /* opengl */ = { - isa = PBXGroup; - children = ( - A07D7DDF0EE82B93006712A3 /* OpenGL.cpp */, - ); - name = opengl; - path = ../../opengl; - sourceTree = SOURCE_ROOT; - }; - A07D7DE00EE82B93006712A3 /* pong */ = { - isa = PBXGroup; - children = ( - A07D7DE20EE82B93006712A3 /* Pong.cpp */, - ); - name = pong; - path = ../../pong; - sourceTree = SOURCE_ROOT; - }; - A07D7DE30EE82B93006712A3 /* post-fx */ = { - isa = PBXGroup; - children = ( - A07D7DE50EE82B93006712A3 /* PostFX.cpp */, - ); - name = "post-fx"; - path = "../../post-fx"; - sourceTree = SOURCE_ROOT; - }; - A07D7DEB0EE82B93006712A3 /* sockets */ = { - isa = PBXGroup; - children = ( - A07D7DED0EE82B93006712A3 /* Sockets.cpp */, - A07D7DEE0EE82B93006712A3 /* TCP.cpp */, - A07D7DEF0EE82B93006712A3 /* UDP.cpp */, - ); - name = sockets; - path = ../../sockets; - sourceTree = SOURCE_ROOT; - }; - A07D7DF00EE82B93006712A3 /* sound */ = { - isa = PBXGroup; - children = ( - A07D7DF30EE82B93006712A3 /* Sound.cpp */, - ); - name = sound; - path = ../../sound; - sourceTree = SOURCE_ROOT; - }; - A07D7DF50EE82B93006712A3 /* sound_capture */ = { - isa = PBXGroup; - children = ( - A07D7DF70EE82B93006712A3 /* SoundCapture.cpp */, - ); - name = sound_capture; - path = ../../sound_capture; - sourceTree = SOURCE_ROOT; - }; - A07D7DF80EE82B93006712A3 /* voip */ = { - isa = PBXGroup; - children = ( - A07D7DF90EE82B93006712A3 /* Client.cpp */, - A07D7DFB0EE82B93006712A3 /* Server.cpp */, - A07D7DFC0EE82B93006712A3 /* VoIP.cpp */, - ); - name = voip; - path = ../../voip; - sourceTree = SOURCE_ROOT; - }; - A07D7DFF0EE82B93006712A3 /* window */ = { - isa = PBXGroup; - children = ( - A07D7E010EE82B93006712A3 /* Window.cpp */, - ); - name = window; - path = ../../window; - sourceTree = SOURCE_ROOT; - }; - A07D7F170EE832AD006712A3 /* Resources */ = { - isa = PBXGroup; - children = ( - A07D7E3C0EE82C1A006712A3 /* opengl-Info.plist */, - A07D7E4C0EE82C68006712A3 /* pong-Info.plist */, - A07D7E6F0EE82D5D006712A3 /* post-fx-Info.plist */, - A07D7EE60EE83167006712A3 /* window-Info.plist */, - ); - name = Resources; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - A07D7E2E0EE82C04006712A3 /* ftp */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7E3F0EE82C1B006712A3 /* Build configuration list for PBXNativeTarget "ftp" */; - buildPhases = ( - A07D7E2C0EE82C04006712A3 /* Sources */, - A07D7E2D0EE82C04006712A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = ftp; - productName = ftp; - productReference = A07D7E2F0EE82C04006712A3 /* ftp */; - productType = "com.apple.product-type.tool"; - }; - A07D7E390EE82C1A006712A3 /* opengl */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7E400EE82C1B006712A3 /* Build configuration list for PBXNativeTarget "opengl" */; - buildPhases = ( - A07D7E360EE82C1A006712A3 /* Resources */, - A07D7E370EE82C1A006712A3 /* Sources */, - A07D7E380EE82C1A006712A3 /* Frameworks */, - A02EB4000F1B966900D33111 /* ShellScript */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = opengl; - productName = opengl; - productReference = A07D7E3A0EE82C1A006712A3 /* opengl.app */; - productType = "com.apple.product-type.application"; - }; - A07D7E490EE82C68006712A3 /* pong */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7E4F0EE82C68006712A3 /* Build configuration list for PBXNativeTarget "pong" */; - buildPhases = ( - A07D7E460EE82C68006712A3 /* Resources */, - A07D7E470EE82C68006712A3 /* Sources */, - A07D7E480EE82C68006712A3 /* Frameworks */, - A02EB40E0F1B977500D33111 /* ShellScript */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = pong; - productName = pong; - productReference = A07D7E4A0EE82C68006712A3 /* pong.app */; - productType = "com.apple.product-type.application"; - }; - A07D7E6C0EE82D5D006712A3 /* post-fx */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7E730EE82D5E006712A3 /* Build configuration list for PBXNativeTarget "post-fx" */; - buildPhases = ( - A07D7E690EE82D5D006712A3 /* Resources */, - A07D7E6A0EE82D5D006712A3 /* Sources */, - A07D7E6B0EE82D5D006712A3 /* Frameworks */, - A02EB4100F1B978000D33111 /* ShellScript */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "post-fx"; - productName = "post-fx"; - productReference = A07D7E6D0EE82D5D006712A3 /* post-fx.app */; - productType = "com.apple.product-type.application"; - }; - A07D7E9A0EE82F0A006712A3 /* sockets */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7EA70EE82F60006712A3 /* Build configuration list for PBXNativeTarget "sockets" */; - buildPhases = ( - A07D7E980EE82F0A006712A3 /* Sources */, - A07D7E990EE82F0A006712A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = sockets; - productName = sockets; - productReference = A07D7E9B0EE82F0A006712A3 /* sockets */; - productType = "com.apple.product-type.tool"; - }; - A07D7EAA0EE82F74006712A3 /* sound */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7EBA0EE82F91006712A3 /* Build configuration list for PBXNativeTarget "sound" */; - buildPhases = ( - A07D7EA80EE82F74006712A3 /* Sources */, - A07D7EA90EE82F74006712A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = sound; - productName = sound; - productReference = A07D7EAB0EE82F74006712A3 /* sound */; - productType = "com.apple.product-type.tool"; - }; - A07D7EBE0EE8302C006712A3 /* sound_capture */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7EC90EE83062006712A3 /* Build configuration list for PBXNativeTarget "sound_capture" */; - buildPhases = ( - A07D7EBC0EE8302C006712A3 /* Sources */, - A07D7EBD0EE8302C006712A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = sound_capture; - productName = sound_capture; - productReference = A07D7EBF0EE8302C006712A3 /* sound_capture */; - productType = "com.apple.product-type.tool"; - }; - A07D7ECF0EE830D3006712A3 /* voip */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7EDF0EE830F9006712A3 /* Build configuration list for PBXNativeTarget "voip" */; - buildPhases = ( - A07D7ECD0EE830D3006712A3 /* Sources */, - A07D7ECE0EE830D3006712A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = voip; - productName = voip; - productReference = A07D7ED00EE830D3006712A3 /* voip */; - productType = "com.apple.product-type.tool"; - }; - A07D7EE30EE83167006712A3 /* window */ = { - isa = PBXNativeTarget; - buildConfigurationList = A07D7EE90EE83168006712A3 /* Build configuration list for PBXNativeTarget "window" */; - buildPhases = ( - A07D7EE00EE83167006712A3 /* Resources */, - A07D7EE10EE83167006712A3 /* Sources */, - A07D7EE20EE83167006712A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = window; - productName = window; - productReference = A07D7EE40EE83167006712A3 /* window.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - A07D7D530EE82B1A006712A3 /* Project object */ = { - isa = PBXProject; - buildConfigurationList = A07D7D560EE82B1A006712A3 /* Build configuration list for PBXProject "samples" */; - compatibilityVersion = "Xcode 2.4"; - hasScannedForEncodings = 0; - mainGroup = A07D7D510EE82B1A006712A3; - productRefGroup = A07D7D600EE82B34006712A3 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - A07D7E600EE82D33006712A3 /* All */, - A07D7E2E0EE82C04006712A3 /* ftp */, - A07D7E390EE82C1A006712A3 /* opengl */, - A07D7E490EE82C68006712A3 /* pong */, - A07D7E6C0EE82D5D006712A3 /* post-fx */, - A07D7E9A0EE82F0A006712A3 /* sockets */, - A07D7EAA0EE82F74006712A3 /* sound */, - A07D7EBE0EE8302C006712A3 /* sound_capture */, - A07D7ECF0EE830D3006712A3 /* voip */, - A07D7EE30EE83167006712A3 /* window */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - A07D7E360EE82C1A006712A3 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E460EE82C68006712A3 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E690EE82D5D006712A3 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EE00EE83167006712A3 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - A02EB4000F1B966900D33111 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd $BUILD_DIR\nmkdir -p $CONTENTS_FOLDER_PATH/Resources\ncd $CONTENTS_FOLDER_PATH/Resources\n\nif ! test -e datas\n then\n ln -s ../../../datas datas\nfi"; - }; - A02EB40E0F1B977500D33111 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd $BUILD_DIR\nmkdir -p $CONTENTS_FOLDER_PATH/Resources\ncd $CONTENTS_FOLDER_PATH/Resources\n\nif ! test -e datas\n then\n ln -s ../../../datas datas\nfi"; - }; - A02EB4100F1B978000D33111 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd $BUILD_DIR\nmkdir -p $CONTENTS_FOLDER_PATH/Resources\ncd $CONTENTS_FOLDER_PATH/Resources\n\nif ! test -e datas\n then\n ln -s ../../../datas datas\nfi"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - A07D7E2C0EE82C04006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E330EE82C0A006712A3 /* Ftp.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E370EE82C1A006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E420EE82C35006712A3 /* OpenGL.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E470EE82C68006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E500EE82C78006712A3 /* Pong.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E6A0EE82D5D006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E740EE82D6B006712A3 /* PostFX.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7E980EE82F0A006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7E9F0EE82F2A006712A3 /* Sockets.cpp in Sources */, - A07D7EA00EE82F2A006712A3 /* TCP.cpp in Sources */, - A07D7EA10EE82F2B006712A3 /* UDP.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EA80EE82F74006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EAF0EE82F80006712A3 /* Sound.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EBC0EE8302C006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EC30EE83035006712A3 /* SoundCapture.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7ECD0EE830D3006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7ED40EE830DB006712A3 /* Client.cpp in Sources */, - A07D7ED50EE830DB006712A3 /* Server.cpp in Sources */, - A07D7ED60EE830DC006712A3 /* VoIP.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A07D7EE10EE83167006712A3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A07D7EEA0EE83171006712A3 /* Window.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - A07D7E640EE82D47006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7E2E0EE82C04006712A3 /* ftp */; - targetProxy = A07D7E630EE82D47006712A3 /* PBXContainerItemProxy */; - }; - A07D7E660EE82D47006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7E390EE82C1A006712A3 /* opengl */; - targetProxy = A07D7E650EE82D47006712A3 /* PBXContainerItemProxy */; - }; - A07D7E680EE82D47006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7E490EE82C68006712A3 /* pong */; - targetProxy = A07D7E670EE82D47006712A3 /* PBXContainerItemProxy */; - }; - A07D7F190EE832C2006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7E6C0EE82D5D006712A3 /* post-fx */; - targetProxy = A07D7F180EE832C2006712A3 /* PBXContainerItemProxy */; - }; - A07D7F1B0EE832C2006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7E9A0EE82F0A006712A3 /* sockets */; - targetProxy = A07D7F1A0EE832C2006712A3 /* PBXContainerItemProxy */; - }; - A07D7F1D0EE832C2006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7EAA0EE82F74006712A3 /* sound */; - targetProxy = A07D7F1C0EE832C2006712A3 /* PBXContainerItemProxy */; - }; - A07D7F1F0EE832C2006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7EBE0EE8302C006712A3 /* sound_capture */; - targetProxy = A07D7F1E0EE832C2006712A3 /* PBXContainerItemProxy */; - }; - A07D7F210EE832C2006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7ECF0EE830D3006712A3 /* voip */; - targetProxy = A07D7F200EE832C2006712A3 /* PBXContainerItemProxy */; - }; - A07D7F230EE832C2006712A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = A07D7EE30EE83167006712A3 /* window */; - targetProxy = A07D7F220EE832C2006712A3 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - A07D7D540EE82B1A006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; - ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/../../../lib\""; - GCC_VERSION = 4.0; - OBJROOT = build; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - SYMROOT = ../../bin; - }; - name = Debug; - }; - A07D7D550EE82B1A006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; - ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = YES; - FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/../../../lib\""; - GCC_VERSION = 4.0; - OBJROOT = build; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - SYMROOT = ../../bin; - }; - name = Release; - }; - A07D7E310EE82C05006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = ftp; - }; - name = Debug; - }; - A07D7E320EE82C05006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = ftp; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7E3D0EE82C1B006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INFOPLIST_FILE = "opengl-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = opengl; - }; - name = Debug; - }; - A07D7E3E0EE82C1B006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INFOPLIST_FILE = "opengl-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = opengl; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7E4D0EE82C68006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INFOPLIST_FILE = "pong-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = pong; - }; - name = Debug; - }; - A07D7E4E0EE82C68006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INFOPLIST_FILE = "pong-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = pong; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7E610EE82D34006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - PRODUCT_NAME = All; - }; - name = Debug; - }; - A07D7E620EE82D34006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - PRODUCT_NAME = All; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7E700EE82D5E006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INFOPLIST_FILE = "post-fx-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = "post-fx"; - }; - name = Debug; - }; - A07D7E710EE82D5E006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INFOPLIST_FILE = "post-fx-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = "post-fx"; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7E9D0EE82F0A006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = sockets; - }; - name = Debug; - }; - A07D7E9E0EE82F0A006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CONFIGURATION_BUILD_DIR = ../../bin; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = sockets; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7EAD0EE82F75006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = sound; - }; - name = Debug; - }; - A07D7EAE0EE82F75006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = sound; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7EC10EE8302C006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = sound_capture; - }; - name = Debug; - }; - A07D7EC20EE8302C006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = sound_capture; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7ED20EE830D3006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = voip; - }; - name = Debug; - }; - A07D7ED30EE830D3006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INSTALL_PATH = /usr/local/bin; - PREBINDING = NO; - PRODUCT_NAME = voip; - ZERO_LINK = NO; - }; - name = Release; - }; - A07D7EE70EE83167006712A3 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - INFOPLIST_FILE = "window-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = window; - }; - name = Debug; - }; - A07D7EE80EE83167006712A3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../lib/xcode\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_MODEL_TUNING = G5; - INFOPLIST_FILE = "window-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Foundation, - "-framework", - AppKit, - ); - PREBINDING = NO; - PRODUCT_NAME = window; - ZERO_LINK = NO; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - A07D7D560EE82B1A006712A3 /* Build configuration list for PBXProject "samples" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7D540EE82B1A006712A3 /* Debug */, - A07D7D550EE82B1A006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7E3F0EE82C1B006712A3 /* Build configuration list for PBXNativeTarget "ftp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7E310EE82C05006712A3 /* Debug */, - A07D7E320EE82C05006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7E400EE82C1B006712A3 /* Build configuration list for PBXNativeTarget "opengl" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7E3D0EE82C1B006712A3 /* Debug */, - A07D7E3E0EE82C1B006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7E4F0EE82C68006712A3 /* Build configuration list for PBXNativeTarget "pong" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7E4D0EE82C68006712A3 /* Debug */, - A07D7E4E0EE82C68006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7E720EE82D5E006712A3 /* Build configuration list for PBXAggregateTarget "All" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7E610EE82D34006712A3 /* Debug */, - A07D7E620EE82D34006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7E730EE82D5E006712A3 /* Build configuration list for PBXNativeTarget "post-fx" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7E700EE82D5E006712A3 /* Debug */, - A07D7E710EE82D5E006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7EA70EE82F60006712A3 /* Build configuration list for PBXNativeTarget "sockets" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7E9D0EE82F0A006712A3 /* Debug */, - A07D7E9E0EE82F0A006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7EBA0EE82F91006712A3 /* Build configuration list for PBXNativeTarget "sound" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7EAD0EE82F75006712A3 /* Debug */, - A07D7EAE0EE82F75006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7EC90EE83062006712A3 /* Build configuration list for PBXNativeTarget "sound_capture" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7EC10EE8302C006712A3 /* Debug */, - A07D7EC20EE8302C006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7EDF0EE830F9006712A3 /* Build configuration list for PBXNativeTarget "voip" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7ED20EE830D3006712A3 /* Debug */, - A07D7ED30EE830D3006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A07D7EE90EE83168006712A3 /* Build configuration list for PBXNativeTarget "window" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A07D7EE70EE83167006712A3 /* Debug */, - A07D7EE80EE83167006712A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = A07D7D530EE82B1A006712A3 /* Project object */; -} diff --git a/examples/build/xcode/window-Info.plist b/examples/build/xcode/window-Info.plist deleted file mode 100644 index 2da151bb5..000000000 --- a/examples/build/xcode/window-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - com.yourcompany.${PRODUCT_NAME:identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - -