diff --git a/exampleSpanningImage/.gitignore b/exampleSpanningImage/.gitignore new file mode 100644 index 0000000..e027186 --- /dev/null +++ b/exampleSpanningImage/.gitignore @@ -0,0 +1,8 @@ +*~ +bin/* +!bin/data/ +bin/libs/ +include/ +obj/ +*.layout +build \ No newline at end of file diff --git a/exampleSpanningImage/Makefile b/exampleSpanningImage/Makefile new file mode 100644 index 0000000..c1b79d4 --- /dev/null +++ b/exampleSpanningImage/Makefile @@ -0,0 +1,465 @@ +# openFrameworks universal makefile +# +# make help : shows this message +# make Debug: makes the application with debug symbols +# make Release: makes the app with optimizations +# make: the same as make Release +# make CleanDebug: cleans the Debug target +# make CleanRelease: cleans the Release target +# make clean: cleans everything +# +# +# this should work with any OF app, just copy any example +# change the name of the folder and it should compile +# only .cpp support, don't use .c files +# it will look for files in any folder inside the application +# folder except that in the EXCLUDE_FROM_SOURCE variable +# it doesn't autodetect include paths yet +# add the include paths in the USER_CFLAGS variable +# using the gcc syntax: -Ipath +# +# to add addons to your application, edit the addons.make file +# in this directory and add the names of the addons you want to +# include +# +# edit the following vars to customize the makefile + +include config.make + +ifeq ($(findstring Android,$(MAKECMDGOALS)),Android) + include $(OF_ROOT)/libs/openFrameworksCompiled/project/android/paths.make + ARCH = android + ifeq ($(shell uname),Darwin) + HOST_PLATFORM = darwin-x86 + else + HOST_PLATFORM = linux-x86 + endif +endif + +ifeq ($(ARCH),android) + COMPILER_OPTIMIZATION = $(ANDROID_COMPILER_OPTIMIZATION) + NDK_PLATFORM = android-8 +else + COMPILER_OPTIMIZATION = $(USER_COMPILER_OPTIMIZATION) +endif + + + + +# you shouldn't modify anything below this line + + +SHELL = /bin/sh +ifneq ($(ARCH),android) + CXX = g++ + ARCH = $(shell uname -m) + ifeq ($(ARCH),x86_64) + LIBSPATH=linux64 + else + LIBSPATH=linux + endif +else + ifeq ($(findstring Release_arm7,$(MAKECMDGOALS)),Release_arm7) + LIBSPATH =android/armeabi-v7a + else + LIBSPATH =android/armeabi + endif + TOOLCHAIN=arm-linux-androideabi-4.4.3 + TOOLCHAIN_PATH=$(NDK_ROOT)/toolchains/$(TOOLCHAIN)/prebuilt/$(HOST_PLATFORM)/bin/ + ANDROID_PREFIX=arm-linux-androideabi- + CC=$(NDK_ROOT)/toolchains/$(TOOLCHAIN)/prebuilt/$(HOST_PLATFORM)/bin/$(ANDROID_PREFIX)gcc + CXX=$(NDK_ROOT)/toolchains/$(TOOLCHAIN)/prebuilt/$(HOST_PLATFORM)/bin/$(ANDROID_PREFIX)g++ + AR=$(NDK_ROOT)/toolchains/$(TOOLCHAIN)/prebuilt/$(HOST_PLATFORM)/bin/$(ANDROID_PREFIX)ar + SYSROOT=$(NDK_ROOT)/platforms/$(NDK_PLATFORM)/arch-arm/ + CFLAGS += -nostdlib --sysroot=$(SYSROOT) -fno-short-enums + CFLAGS += -I"$(NDK_ROOT)/platforms/$(NDK_PLATFORM)/arch-arm/usr/include" -I"$(NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/include/" -I"$(NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include" + CFLAGS += -DANDROID +endif + +NODEPS = clean +SED_EXCLUDE_FROM_SRC = $(shell echo $(EXCLUDE_FROM_SOURCE) | sed "s/,\(.*\)/,\1,/g" | sed "s/\([^,]*\),/ .\/\1%/g") +ALL_SOURCES_DIRS = $(shell find . -type d) +SOURCE_DIRS = $(filter-out $(SED_EXCLUDE_FROM_SRC), $(ALL_SOURCES_DIRS)) +SOURCES = $(shell find $(SOURCE_DIRS) -maxdepth 1 -mindepth 1 -name "*.cpp" -or -name "*.c" -or -name "*.cc") +OBJFILES = $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(patsubst %.cc,%.o,$(SOURCES)))) + +ifneq (,$(USER_SOURCE_DIR)) + USER_SOURCES = $(shell find $(USER_SOURCE_DIR) -name "*.cpp" -or -name "*.c" -or -name "*.cc") + USER_OBJFILES = $(subst $(USER_SOURCE_DIR)/, ,$(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(patsubst %.cc,%.o,$(USER_SOURCES))))) +endif + +APPNAME = $(shell basename `pwd`) +CORE_INCLUDES = $(shell find $(OF_ROOT)/libs/openFrameworks/ -type d) +CORE_INCLUDE_FLAGS = $(addprefix -I,$(CORE_INCLUDES)) +INCLUDES = $(shell find $(OF_ROOT)/libs/*/include -type d | grep -v glu | grep -v quicktime | grep -v poco) +INCLUDES_FLAGS = $(addprefix -I,$(INCLUDES)) +INCLUDES_FLAGS += -I$(OF_ROOT)/libs/poco/include +ifeq ($(ARCH),android) + INCLUDES_FLAGS += -I$(OF_ROOT)/libs/glu/include_android +else + INCLUDES_FLAGS += -I$(OF_ROOT)/libs/glu/include + INCLUDES_FLAGS += $(shell pkg-config glew gstreamer-0.10 gstreamer-video-0.10 gstreamer-base-0.10 libudev --cflags) + #check if gtk exists and add it + GTK = $(shell pkg-config gtk+-2.0 --exists; echo $$?) + ifeq ($(GTK),0) + CFLAGS += $(shell pkg-config gtk+-2.0 --cflags) -DOF_USING_GTK + SYSTEMLIBS += $(shell pkg-config gtk+-2.0 --libs) + endif + + #check if mpg123 exists and add it + MPG123 = $(shell pkg-config libmpg123 --exists; echo $$?) + ifeq ($(MPG123),0) + CFLAGS += -DOF_USING_MPG123 + SYSTEMLIBS += -lmpg123 + endif +endif +LIB_STATIC = $(shell ls $(OF_ROOT)/libs/*/lib/$(LIBSPATH)/*.a 2> /dev/null | grep -v openFrameworksCompiled | grep -v Poco) +LIB_SHARED = $(shell ls $(OF_ROOT)/libs/*/lib/$(LIBSPATH)/*.so 2> /dev/null | grep -v openFrameworksCompiled | sed "s/.*\\/lib\([^/]*\)\.so/-l\1/") +LIB_STATIC += $(OF_ROOT)/libs/poco/lib/$(LIBSPATH)/libPocoNet.a $(OF_ROOT)/libs/poco/lib/$(LIBSPATH)/libPocoXML.a $(OF_ROOT)/libs/poco/lib/$(LIBSPATH)/libPocoUtil.a $(OF_ROOT)/libs/poco/lib/$(LIBSPATH)/libPocoFoundation.a +LIB_PATHS_FLAGS = $(shell ls -d $(OF_ROOT)/libs/*/lib/$(LIBSPATH) | sed "s/\(\.*\)/-L\1/") + +CFLAGS += -Wall -fexceptions +CFLAGS += -I. +CFLAGS += $(INCLUDES_FLAGS) +CFLAGS += $(CORE_INCLUDE_FLAGS) + + + +ifeq ($(ARCH),android) + LDFLAGS = --sysroot=$(SYSROOT) -nostdlib -L"$(NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/libs/armeabi" + SYSTEMLIBS += -lstdc++ -lsupc++ -lgcc -lz -lGLESv1_CM -llog -ldl -lm -lc +else + LDFLAGS = -Wl,-rpath=./libs + SYSTEMLIBS += $(shell pkg-config jack glew gstreamer-0.10 gstreamer-video-0.10 gstreamer-base-0.10 gstreamer-app-0.10 libudev cairo --libs) + SYSTEMLIBS += -lglut -lGL -lasound -lopenal -lsndfile -lvorbis -lFLAC -logg -lfreeimage -lGLU +endif + + +ifeq ($(findstring addons.make,$(wildcard *.make)),addons.make) + ifneq ($(ARCH),android) + ADDONS = $(shell cat addons.make | grep -v ofxAndroid) + else + ADDONS = $(shell cat addons.make) + endif + + ifneq ($(strip $(ADDONS)),) + ADDONS_REL_DIRS = $(addsuffix /src, $(ADDONS)) + ADDONS_LIBS_REL_DIRS = $(addsuffix /libs, $(ADDONS)) + ADDONS_DIRS = $(addprefix $(OF_ROOT)/addons/, $(ADDONS_REL_DIRS) ) + ADDONS_LIBS_DIRS = $(addprefix $(OF_ROOT)/addons/, $(ADDONS_LIBS_REL_DIRS) ) + ADDONS_BIN_LIBS_DIRS = $(addsuffix /*/lib/$(LIBSPATH), $(ADDONS_LIBS_DIRS) ) + + ADDONS_INCLUDES = $(ADDONS_DIRS) + ADDONS_INCLUDES = $(ADDONS_LIBS_DIRS) + ADDONS_INCLUDES += $(shell find $(ADDONS_DIRS) -type d 2> /dev/null) + ADDONS_INCLUDES += $(shell find $(ADDONS_LIBS_DIRS) -type d 2> /dev/null) + ADDONSCFLAGS = $(addprefix -I,$(ADDONS_INCLUDES)) + + ifeq ($(findstring libsorder.make,$(shell find $(ADDONS_BIN_LIBS_DIRS) -name libsorder.make 2> /dev/null)),libsorder.make) + ADDONS_LIBS_W_ORDER = $(shell cat $(shell find $(ADDONS_BIN_LIBS_DIRS) -name libsorder.make 2> /dev/null)) + EXCLUDE_LIBS_FILTER = $(addprefix %,$(addsuffix .a,$(ADDONS_LIBS_W_ORDER))) + ADDONS_LIBS_STATICS = $(filter-out $(EXCLUDE_LIBS_FILTER), $(shell find $(ADDONS_BIN_LIBS_DIRS) -name *.a)) + ADDONS_LIBS_STATICS += $(addprefix -l, $(ADDONS_LIBS_W_ORDER)) + ADDONS_LIBS_STATICS += $(addprefix -L, $(shell find $(ADDONS_BIN_LIBS_DIRS) -name libsorder.make 2> /dev/null | sed s/libsorder.make//g)) + else + ADDONS_LIBS_STATICS = $(shell find $(ADDONS_BIN_LIBS_DIRS) -name *.a 2> /dev/null) + endif + + ADDONS_LIBS_SHARED = $(shell find $(ADDONS_BIN_LIBS_DIRS) -name *.so 2> /dev/null) + ADDONSLIBS = $(ADDONS_LIBS_STATICS) + ADDONSLIBS += $(ADDONS_LIBS_SHARED) + + + ADDONS_SOURCES = $(shell find $(ADDONS_DIRS) -name "*.cpp" -or -name "*.c" 2> /dev/null) + ADDONS_SOURCES += $(shell find $(ADDONS_LIBS_DIRS) -name "*.cpp" -or -name "*.c" -or -name "*.cc" 2>/dev/null) + ADDONS_OBJFILES = $(subst $(OF_ROOT)/, ,$(patsubst %.cc,%.o,$(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(ADDONS_SOURCES))))) + endif +endif + + +ifeq ($(findstring Debug,$(MAKECMDGOALS)),Debug) + TARGET_CFLAGS = -g + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(LIBSPATH)/libopenFrameworksDebug.a + TARGET_NAME = Debug +endif + +ifeq ($(findstring Release,$(MAKECMDGOALS)),Release) + TARGET_CFLAGS = $(COMPILER_OPTIMIZATION) + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(LIBSPATH)/libopenFrameworks.a + TARGET_NAME = Release +endif + +ifeq ($(ARCH),android) + ifeq ($(findstring Debug,$(MAKECMDGOALS)),Debug) + TARGET = libs/armeabi/libOFAndroidApp.so + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(ARCH)/libopenFrameworksDebug.a + LDFLAGS += -Wl,--fix-cortex-a8 -shared + USER_LIBS = $(USER_LIBS_ARM) + endif + + ifeq ($(findstring Release,$(MAKECMDGOALS)),Release) + TARGET = libs/armeabi/libOFAndroidApp.so + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(ARCH)/libopenFrameworks.a + LDFLAGS += -Wl,--fix-cortex-a8 -shared + USER_LIBS = $(USER_LIBS_ARM) + endif + + ifeq ($(findstring Release_arm7,$(MAKECMDGOALS)),Release_arm7) + TARGET_NAME = Release_arm7 + TARGET_CFLAGS += -march=armv7-a -mfloat-abi=softfp -mthumb + TARGET = libs/armeabi-v7a/libOFAndroidApp.so + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(ARCH)/libopenFrameworks_arm7.a + USER_LIBS = $(USER_LIBS_ARM7) + endif + + ifeq ($(findstring Release_neon,$(MAKECMDGOALS)),Release_neon) + TARGET_NAME = Release_neon + TARGET_CFLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=neon + TARGET = libs/armeabi-v7a/libOFAndroidApp_neon.so + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(ARCH)/libopenFrameworks_neon.a + USER_LIBS = $(USER_LIBS_NEON) + endif + + ifeq ($(findstring TestLink,$(MAKECMDGOALS)),TestLink) + TARGET_NAME = Debug + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(ARCH)/libopenFrameworksDebug.a + LDFLAGS += -Wl,--entry=main,--fix-cortex-a8 + BIN_NAME = $(APPNAME) + TARGET = obj/$(BIN_NAME) + USER_LIBS = $(USER_LIBS_ARM) + endif +else + ifeq ($(findstring Debug,$(MAKECMDGOALS)),Debug) + BIN_NAME = $(APPNAME)_debug + TARGET = bin/$(BIN_NAME) + endif + + ifeq ($(findstring Release,$(MAKECMDGOALS)),Release) + BIN_NAME = $(APPNAME) + TARGET = bin/$(BIN_NAME) + endif + + ifeq ($(MAKECMDGOALS),) + TARGET_NAME = Release + BIN_NAME = $(APPNAME) + TARGET = bin/$(BIN_NAME) + TARGET_LIBS = $(OF_ROOT)/libs/openFrameworksCompiled/lib/$(LIBSPATH)/libopenFrameworks.a + endif +endif + +ifeq ($(MAKECMDGOALS),clean) + TARGET = bin/$(APPNAME)_debug bin/$(APPNAME) + TARGET_NAME = Release +endif + + +OBJ_OUTPUT = obj/$(ARCH)$(TARGET_NAME)/ +CLEANTARGET = clean$(TARGET_NAME) + +OBJS = $(addprefix $(OBJ_OUTPUT), $(OBJFILES)) +DEPFILES = $(patsubst %.o,%.d,$(OBJS)) + +USER_OBJS = $(addprefix $(OBJ_OUTPUT), $(USER_OBJFILES)) +DEPFILES += $(patsubst %.o,%.d,$(USER_OBJS)) + +ifeq ($(findstring addons.make,$(wildcard *.make)),addons.make) + ADDONS_OBJS = $(addprefix $(OBJ_OUTPUT), $(ADDONS_OBJFILES)) + DEPFILES += $(patsubst %.o,%.d,$(ADDONS_OBJS)) +endif + +.PHONY: Debug Release all after afterDebugAndroid afterReleaseAndroid + +Release: $(TARGET) after + +Debug: $(TARGET) after + +all: + $(MAKE) Release + +DebugAndroid: $(TARGET) + +ReleaseAndroid: $(TARGET) + +Release_arm7Android: $(TARGET) + +Release_neonAndroid: $(TARGET) afterReleaseAndroid + +TestLinkAndroid: $(TARGET) afterDebugAndroid + +AndroidDebug: + $(MAKE) DebugAndroid + $(MAKE) TestLinkAndroid + +AndroidRelease: + $(MAKE) ReleaseAndroid + $(MAKE) Release_arm7Android + $(MAKE) Release_neonAndroid + + +#This rule does the compilation +#$(OBJS): $(SOURCES) +$(OBJ_OUTPUT)%.o: %.cpp + @echo "compiling object for: " $< + mkdir -p $(@D) + $(CXX) -c $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o$@ -c $< + +$(OBJ_OUTPUT)%.o: %.c + @echo "compiling object for: " $< + mkdir -p $(@D) + $(CC) -c $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o$@ -c $< + +$(OBJ_OUTPUT)%.o: %.cc + @echo "compiling object for: " $< + mkdir -p $(@D) + $(CC) -c $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o$@ -c $< + +$(OBJ_OUTPUT)%.o: $(OF_ROOT)/%.cpp + @echo "compiling addon object for" $< + mkdir -p $(@D) + $(CXX) $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o $@ -c $< + +$(OBJ_OUTPUT)%.o: $(OF_ROOT)/%.c + @echo "compiling addon object for" $< + mkdir -p $(@D) + $(CC) $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o $@ -c $< + +$(OBJ_OUTPUT)%.o: $(OF_ROOT)/%.cc + @echo "compiling addon object for" $< + mkdir -p $(@D) + $(CC) $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o $@ -c $< + +$(OBJ_OUTPUT)%.o: $(USER_SOURCE_DIR)/%.c + @echo "compiling object for: " $< + mkdir -p $(@D) + $(CC) $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o$@ -c $< + +$(OBJ_OUTPUT)%.o: $(USER_SOURCE_DIR)/%.cc + @echo "compiling object for: " $< + mkdir -p $(@D) + $(CC) $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o$@ -c $< + +$(OBJ_OUTPUT)%.o: $(USER_SOURCE_DIR)/%.cpp + @echo "compiling object for: " $< + mkdir -p $(@D) + $(CXX) $(TARGET_CFLAGS) $(CFLAGS) $(ADDONSCFLAGS) $(USER_CFLAGS) -MMD -MP -MF$(OBJ_OUTPUT)$*.d -MT$(OBJ_OUTPUT)$*.d -o$@ -c $< + +$(TARGET): $(OBJS) $(ADDONS_OBJS) $(USER_OBJS) $(TARGET_LIBS) $(LIB_STATIC) Makefile + @echo 'linking $(TARGET) $(SOURCE_DIRS)' + mkdir -p $(@D) + $(CXX) -o $@ $(OBJS) $(ADDONS_OBJS) $(USER_OBJS) $(LDFLAGS) $(USER_LDFLAGS) $(TARGET_LIBS) $(ADDONSLIBS) $(USER_LIBS) $(LIB_STATIC) $(LIB_PATHS_FLAGS) $(LIB_SHARED) $(SYSTEMLIBS) + +-include $(DEPFILES) + +.PHONY: clean cleanDebug cleanRelease CleanAndroid +clean: + rm -rf $(OBJ_OUTPUT) + rm -f $(TARGET) + rm -r bin/libs + +$(CLEANTARGET): + rm -rf $(OBJ_OUTPUT) + rm -f $(TARGET) + rm -rf bin/libs + +CleanAndroid: + rm -Rf obj + rm -f libs/armeabi-v7a/libOFAndroidApp.so + rm -f libs/armeabi/libOFAndroidApp.so + rm -f obj/$(APPNAME) + + +afterDebugAndroid:$(TARGET) + @if [ -d libs/armeabi-v7a ]; then rm -r libs/armeabi-v7a; fi + + @cp $(NDK_ROOT)/toolchains/arm-linux-androideabi-4.4.3/prebuilt/gdbserver libs/armeabi + + #create gdb.setup for armeabi + @echo "set solib-search-path $(PWD)/obj/local/armeabi:$(PWD)/libs/armeabi" > libs/armeabi/gdb.setup + @echo "directory $(NDK_ROOT)/platforms/$(NDK_PLATFORM)/arch-arm/usr/include" >> libs/armeabi/gdb.setup + @echo "directory $(PWD)/src" >> libs/armeabi/gdb.setup + @echo "directory $(NDK_ROOT)/sources/cxx-stl/system" >> libs/armeabi/gdb.setup + @echo "directory $(PWD)/libs/armeabi" >> libs/armeabi/gdb.setup + @echo "" >> libs/armeabi/gdb.setup + + @if [ ! -d jni ]; then mkdir jni; fi + @echo "APP_ABI := armeabi" > jni/Application.mk + @echo "#LOCAL_MODULE := OFAndroidApp" > jni/Android.mk + +afterReleaseAndroid:$(TARGET) + @if [ -f obj/$(BIN_NAME) ]; then rm obj/$(BIN_NAME); fi + + @cp $(OF_ROOT)/libs/openFrameworksCompiled/project/android/libneondetection.so libs/armeabi-v7a/ + @cp $(NDK_ROOT)/toolchains/arm-linux-androideabi-4.4.3/prebuilt/gdbserver libs/armeabi-v7a + + #create gdb.setup for armeabi-v7a + @echo "set solib-search-path $(PWD)/obj/local/armeabi-v7a:$(PWD)/libs/armeabi-v7a" > libs/armeabi-v7a/gdb.setup + @echo "directory $(NDK_ROOT)/platforms/$(NDK_PLATFORM)/arch-arm/usr/include" >> libs/armeabi-v7a/gdb.setup + @echo "directory $(PWD)/src" >> libs/armeabi-v7a/gdb.setup + @echo "directory $(NDK_ROOT)/sources/cxx-stl/system" >> libs/armeabi-v7a/gdb.setup + @echo "directory $(PWD)/libs/armeabi-v7a" >> libs/armeabi-v7a/gdb.setup + @echo "" >> libs/armeabi-v7a/gdb.setup + + @if [ ! -d jni ]; then mkdir jni; fi + @echo "APP_ABI := armeabi armeabi-v7a" > jni/Application.mk + @echo "#LOCAL_MODULE := OFAndroidApp" > jni/Android.mk + +RESNAME=$(shell echo $(APPNAME)Resources | tr '[A-Z]' '[a-z]') + +AndroidInstall: + if [ -d "bin/data" ]; then \ + mkdir -p res/raw; \ + rm res/raw/$(RESNAME).zip; \ + cd bin/data; \ + zip -r ../../res/raw/$(RESNAME).zip *; \ + cd ../..; \ + fi + if [ -f obj/$(BIN_NAME) ]; then rm obj/$(BIN_NAME); fi + #touch AndroidManifest.xml + $(SDK_ROOT)/tools/android update project --target $(NDK_PLATFORM) --path $(PROJECT_PATH) + ant debug + cp bin/OFActivity-debug.apk bin/$(APPNAME).apk + #if [ "$(shell $(SDK_ROOT)/platform-tools/adb get-state)" = "device" ]; then + $(SDK_ROOT)/platform-tools/adb install -r bin/$(APPNAME).apk; + #fi + $(SDK_ROOT)/platform-tools/adb shell am start -a android.intent.action.MAIN -n cc.openframeworks.$(APPNAME)/cc.openframeworks.$(APPNAME).OFActivity + + +after:$(TARGET) + cp -r $(OF_ROOT)/export/$(LIBSPATH)/libs bin/ + @echo + @echo " compiling done" + @echo " to launch the application" + @echo + @echo " cd bin" + @echo " ./$(BIN_NAME)" + @echo + + +.PHONY: help +help: + @echo + @echo openFrameworks universal makefile + @echo + @echo targets: + @echo "make Debug: builds the application with debug symbols" + @echo "make Release: builds the app with optimizations" + @echo "make: = make Release" + @echo "make all: = make Release" + @echo "make CleanDebug: cleans the Debug target" + @echo "make CleanRelease: cleans the Release target" + @echo "make clean: cleans everything" + @echo + @echo this should work with any OF app, just copy any example + @echo change the name of the folder and it should compile + @echo "only .cpp support, don't use .c files" + @echo it will look for files in any folder inside the application + @echo folder except that in the EXCLUDE_FROM_SOURCE variable. + @echo "it doesn't autodetect include paths yet" + @echo "add the include paths editing the var USER_CFLAGS" + @echo at the beginning of the makefile using the gcc syntax: + @echo -Ipath + @echo + @echo to add addons to your application, edit the addons.make file + @echo in this directory and add the names of the addons you want to + @echo include + @echo diff --git a/exampleSpanningImage/Project.xcconfig b/exampleSpanningImage/Project.xcconfig new file mode 100644 index 0000000..c10b9e5 --- /dev/null +++ b/exampleSpanningImage/Project.xcconfig @@ -0,0 +1,9 @@ +//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. +//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED +OF_PATH = ../../.. + +//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE +#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" + +OTHER_LDFLAGS = $(OF_CORE_LIBS) +HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) diff --git a/exampleSpanningImage/addons.make b/exampleSpanningImage/addons.make new file mode 100644 index 0000000..abfa0f0 --- /dev/null +++ b/exampleSpanningImage/addons.make @@ -0,0 +1 @@ +ofxFenster diff --git a/exampleSpanningImage/bin/data/someLargeImage.jpg b/exampleSpanningImage/bin/data/someLargeImage.jpg new file mode 100644 index 0000000..4a5636a Binary files /dev/null and b/exampleSpanningImage/bin/data/someLargeImage.jpg differ diff --git a/exampleSpanningImage/codeLite/linux.project b/exampleSpanningImage/codeLite/linux.project new file mode 100644 index 0000000..0d5032f --- /dev/null +++ b/exampleSpanningImage/codeLite/linux.project @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + make clean + make + + + + None + $(WorkspacePath)../ + + + + + + + + + + + + + + + + + + + + + + + + + make clean + make + + + + None + $(WorkspacePath) + + + + + + + + diff --git a/exampleSpanningImage/codeLite/ofxFensterExample.workspace b/exampleSpanningImage/codeLite/ofxFensterExample.workspace new file mode 100644 index 0000000..43a779d --- /dev/null +++ b/exampleSpanningImage/codeLite/ofxFensterExample.workspace @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/exampleSpanningImage/config.make b/exampleSpanningImage/config.make new file mode 100644 index 0000000..af78dd9 --- /dev/null +++ b/exampleSpanningImage/config.make @@ -0,0 +1,45 @@ +# add custom variables to this file + +# OF_ROOT allows to move projects outside apps/* just set this variable to the +# absoulte path to the OF root folder + +OF_ROOT = ../../.. + + +# USER_CFLAGS allows to pass custom flags to the compiler +# for example search paths like: +# USER_CFLAGS = -I src/objects + +USER_CFLAGS = + + +# USER_LDFLAGS allows to pass custom flags to the linker +# for example libraries like: +# USER_LD_FLAGS = libs/libawesomelib.a + +USER_LD_FLAGS = + + +# use this to add system libraries for example: +# USER_LIBS = -lpango + +USER_LIBS = -lX11 + + +# change this to add different compiler optimizations to your project + +LINUX_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os + +ANDROID_COMPILER_OPTIMIZATION = -Os + + +# you shouldn't need to change this for usual OF apps, it allows to include code from other directories +# useful if you need to share a folder with code between 2 apps. The makefile will search recursively +# you can only set 1 path here + +USER_SOURCE_DIR = + +# you shouldn't need to change this for usual OF apps, it allows to exclude code from some directories +# useful if you have some code for reference in the project folder but don't want it to be compiled + +EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj" diff --git a/exampleSpanningImage/example.cbp b/exampleSpanningImage/example.cbp new file mode 100644 index 0000000..5e6ffeb --- /dev/null +++ b/exampleSpanningImage/example.cbp @@ -0,0 +1,60 @@ + + + + + + diff --git a/exampleSpanningImage/example.workspace b/exampleSpanningImage/example.workspace new file mode 100644 index 0000000..0040d9c --- /dev/null +++ b/exampleSpanningImage/example.workspace @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/exampleSpanningImage/exampleLinux.workspace b/exampleSpanningImage/exampleLinux.workspace new file mode 100644 index 0000000..e3ab0e2 --- /dev/null +++ b/exampleSpanningImage/exampleLinux.workspace @@ -0,0 +1,7 @@ + + + + + + + diff --git a/exampleSpanningImage/exampleWindows.cbp b/exampleSpanningImage/exampleWindows.cbp new file mode 100644 index 0000000..3e3fe76 --- /dev/null +++ b/exampleSpanningImage/exampleWindows.cbp @@ -0,0 +1,191 @@ + + + + + + diff --git a/exampleSpanningImage/exampleWindows.cbp.cbTemp b/exampleSpanningImage/exampleWindows.cbp.cbTemp new file mode 100644 index 0000000..2fdd887 --- /dev/null +++ b/exampleSpanningImage/exampleWindows.cbp.cbTemp @@ -0,0 +1,126 @@ + + + + + + diff --git a/exampleSpanningImage/exampleWindows.depend b/exampleSpanningImage/exampleWindows.depend new file mode 100644 index 0000000..32f90cd --- /dev/null +++ b/exampleSpanningImage/exampleWindows.depend @@ -0,0 +1,2170 @@ +# depslib dependency file v1.0 +1310744144 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\apps\examples\exampleWindows\src\testapp.cpp + "testApp.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\apps\examples\exampleWindows\src\testapp.h + "ofMain.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\ofmain.h + "ofConstants.h" + "ofFileUtils.h" + "ofLog.h" + "ofSystemUtils.h" + "ofThread.h" + "ofURLFileLoader.h" + "ofUtils.h" + "ofBaseTypes.h" + "ofTypes.h" + "ofColor.h" + "ofPoint.h" + "ofRectangle.h" + "ofMath.h" + "ofVectorMath.h" + "ofSerial.h" + "ofArduino.h" + "ofFbo.h" + "ofGLRenderer.h" + "ofGLUtils.h" + "ofLight.h" + "ofMaterial.h" + "ofShader.h" + "ofTexture.h" + "ofVbo.h" + "ofVboMesh.h" + "ofCairoRenderer.h" + "ofGraphics.h" + "ofImage.h" + "ofPath.h" + "ofPixels.h" + "ofPolyline.h" + "ofRendererCollection.h" + "ofTessellator.h" + "ofTrueTypeFont.h" + "ofBaseApp.h" + "ofAppRunner.h" + "ofSoundStream.h" + "ofSoundPlayer.h" + "ofVideoGrabber.h" + "ofVideoPlayer.h" + "ofEvents.h" + "of3dUtils.h" + "ofCamera.h" + "ofEasyCam.h" + "ofMesh.h" + "ofNode.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\ofconstants.h + + + "GL\glew.h" + "GL\wglew.h" + "glu.h" + + "GL/glew.h" + + + + + + + + + + "glu.h" + "tesselator.h" + + + + + + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\glew\include\gl\glew.h + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\glew\include\gl\wglew.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\glu\include\glu.h + "glu_mangle.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\tess2\include\tesselator.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\offileutils.h + "ofConstants.h" + "Poco/File.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\file.h + "Poco/Foundation.h" + "Poco/Timestamp.h" + + "File_WINCE.h" + "Poco/File_WIN32U.h" + "Poco/File_WIN32.h" + "Poco/File_UNIX.h" + "Poco/File_VMS.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\foundation.h + "Poco/Config.h" + "Poco/Platform.h" + "Poco/Platform_WIN32.h" + "Poco/Platform_VMS.h" + "Poco/Platform_POSIX.h" + "Poco/Bugcheck.h" + "Poco/Types.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\config.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\platform.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\platform_win32.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\platform_vms.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\platform_posix.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\bugcheck.h + "Poco/Foundation.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\types.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\timestamp.h + "Poco/Foundation.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\file_wince.h + "Poco/Foundation.h" + "Poco/Timestamp.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\file_win32u.h + "Poco/Foundation.h" + "Poco/Timestamp.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\file_win32.h + "Poco/Foundation.h" + "Poco/Timestamp.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\file_unix.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\file_vms.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\oflog.h + "ofConstants.h" + "ofFileUtils.h" + "ofTypes.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\types\oftypes.h + "ofConstants.h" + "ofColor.h" + + + "Poco/Mutex.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\types\ofcolor.h + + "ofMath.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofmath.h + "ofPoint.h" + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\types\ofpoint.h + "ofVec3f.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofvec3f.h + "ofVec2f.h" + "ofVec4f.h" + "ofConstants.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofvec2f.h + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofvec4f.h + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\mutex.h + "Poco/Foundation.h" + "Poco/Exception.h" + "Poco/ScopedLock.h" + "Poco/Mutex_WINCE.h" + "Poco/Mutex_WIN32.h" + "Poco/Mutex_POSIX.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\exception.h + "Poco/Foundation.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\scopedlock.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\mutex_wince.h + "Poco/Foundation.h" + "Poco/Exception.h" + "Poco/UnWindows.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\unwindows.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\mutex_win32.h + "Poco/Foundation.h" + "Poco/Exception.h" + "Poco/UnWindows.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\mutex_posix.h + "Poco/Foundation.h" + "Poco/Exception.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\ofsystemutils.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\ofthread.h + "ofConstants.h" + "ofTypes.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\ofurlfileloader.h + + + "ofThread.h" + "ofEvents.h" + "ofFileUtils.h" + "Poco/Condition.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\events\ofevents.h + "ofConstants.h" + "ofPoint.h" + "ofEventUtils.h" + "ofxEventUtils.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\events\ofeventutils.h + "ofConstants.h" + "Poco/FIFOEvent.h" + "Poco/Delegate.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\fifoevent.h + "Poco/AbstractEvent.h" + "Poco/FIFOStrategy.h" + "Poco/AbstractDelegate.h" + "Poco/CompareFunctions.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\abstractevent.h + "Poco/Foundation.h" + "Poco/SingletonHolder.h" + "Poco/SharedPtr.h" + "Poco/ActiveResult.h" + "Poco/ActiveMethod.h" + "Poco/Mutex.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\singletonholder.h + "Poco/Foundation.h" + "Poco/Mutex.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\sharedptr.h + "Poco/Foundation.h" + "Poco/Exception.h" + "Poco/AtomicCounter.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\atomiccounter.h + "Poco/Foundation.h" + "Poco/UnWindows.h" + + "Poco/Mutex.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\activeresult.h + "Poco/Foundation.h" + "Poco/Mutex.h" + "Poco/Event.h" + "Poco/RefCountedObject.h" + "Poco/Exception.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\event.h + "Poco/Foundation.h" + "Poco/Exception.h" + "Poco/Event_WIN32.h" + "Poco/Event_POSIX.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\event_win32.h + "Poco/Foundation.h" + "Poco/Exception.h" + "Poco/UnWindows.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\event_posix.h + "Poco/Foundation.h" + "Poco/Exception.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\refcountedobject.h + "Poco/Foundation.h" + "Poco/AtomicCounter.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\activemethod.h + "Poco/Foundation.h" + "Poco/ActiveResult.h" + "Poco/ActiveRunnable.h" + "Poco/ActiveStarter.h" + "Poco/AutoPtr.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\activerunnable.h + "Poco/Foundation.h" + "Poco/ActiveResult.h" + "Poco/Runnable.h" + "Poco/RefCountedObject.h" + "Poco/AutoPtr.h" + "Poco/Exception.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\runnable.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\autoptr.h + "Poco/Foundation.h" + "Poco/Exception.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\activestarter.h + "Poco/Foundation.h" + "Poco/ThreadPool.h" + "Poco/ActiveRunnable.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\threadpool.h + "Poco/Foundation.h" + "Poco/Thread.h" + "Poco/Mutex.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\thread.h + "Poco/Foundation.h" + "Poco/Mutex.h" + "Poco/Thread_WINCE.h" + "Poco/Thread_WIN32.h" + "Poco/Thread_POSIX.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\thread_wince.h + "Poco/Foundation.h" + "Poco/Runnable.h" + "Poco/UnWindows.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\thread_win32.h + "Poco/Foundation.h" + "Poco/Runnable.h" + "Poco/UnWindows.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\thread_posix.h + "Poco/Foundation.h" + "Poco/Runnable.h" + "Poco/SignalHandler.h" + "Poco/Event.h" + "Poco/RefCountedObject.h" + "Poco/AutoPtr.h" + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\signalhandler.h + "Poco/Foundation.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\fifostrategy.h + "Poco/NotificationStrategy.h" + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\notificationstrategy.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\abstractdelegate.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\comparefunctions.h + "Poco/Foundation.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\delegate.h + "Poco/Foundation.h" + "Poco/AbstractDelegate.h" + "Poco/FunctionDelegate.h" + "Poco/Expire.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\functiondelegate.h + "Poco/Foundation.h" + "Poco/AbstractDelegate.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\expire.h + "Poco/Foundation.h" + "Poco/AbstractDelegate.h" + "Poco/Timestamp.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\condition.h + "Poco/Foundation.h" + "Poco/Mutex.h" + "Poco/ScopedUnlock.h" + "Poco/Event.h" + "Poco/Exception.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\poco\include\poco\scopedunlock.h + "Poco/Foundation.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\utils\ofutils.h + "ofConstants.h" + + "ofLog.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\types\ofbasetypes.h + "ofPoint.h" + "ofRectangle.h" + "ofConstants.h" + "ofColor.h" + "ofMesh.h" + "ofPixels.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\types\ofrectangle.h + "ofPoint.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\3d\ofmesh.h + "ofVec3f.h" + "ofVec2f.h" + "ofColor.h" + "ofUtils.h" + "ofConstants.h" + "ofGLUtils.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\ofglutils.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofpixels.h + "ofConstants.h" + "ofUtils.h" + "ofColor.h" + "ofMath.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofvectormath.h + "ofVec2f.h" + "ofVec3f.h" + "ofVec4f.h" + "ofMatrix3x3.h" + "ofMatrix4x4.h" + "ofQuaternion.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofmatrix3x3.h + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofmatrix4x4.h + "ofVec3f.h" + "ofVec4f.h" + "ofQuaternion.h" + "ofConstants.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\math\ofquaternion.h + "ofConstants.h" + "ofVec3f.h" + "ofVec4f.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\communication\ofserial.h + "ofConstants.h" + "ofTypes.h" + + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\communication\ofarduino.h + + + + + "ofEvents.h" + "ofSerial.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\offbo.h + "ofTexture.h" + "ofMain.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\oftexture.h + "ofPoint.h" + "ofRectangle.h" + "ofBaseTypes.h" + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\ofglrenderer.h + "ofBaseTypes.h" + "ofPolyline.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofpolyline.h + "ofPoint.h" + "ofConstants.h" + + "ofRectangle.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\oflight.h + "ofNode.h" + "ofColor.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\3d\ofnode.h + "ofVectorMath.h" + "of3dUtils.h" + "ofGraphics.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\3d\of3dutils.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofgraphics.h + "ofConstants.h" + "ofColor.h" + "ofPoint.h" + "ofMatrix4x4.h" + "ofRectangle.h" + "ofTypes.h" + "ofBaseTypes.h" + "ofGLRenderer.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\ofmaterial.h + "ofColor.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\ofshader.h + "ofConstants.h" + "ofBaseTypes.h" + "ofTexture.h" + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\ofvbo.h + "ofConstants.h" + "ofVec3f.h" + "ofColor.h" + "ofUtils.h" + "ofMesh.h" + "ofGLUtils.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\gl\ofvbomesh.h + "ofMesh.h" + "ofVbo.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofcairorenderer.h + "cairo-features.h" + "cairo-pdf.h" + "cairo-svg.h" + "cairo.h" + + + "ofMatrix4x4.h" + "ofBaseTypes.h" + "ofPath.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\cairo\include\cairo\cairo-features.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\cairo\include\cairo\cairo-pdf.h + "cairo.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\cairo\include\cairo\cairo.h + "cairo-version.h" + "cairo-features.h" + "cairo-deprecated.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\cairo\include\cairo\cairo-version.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\cairo\include\cairo\cairo-deprecated.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\cairo\include\cairo\cairo-svg.h + "cairo.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofpath.h + "ofConstants.h" + "ofPoint.h" + "ofColor.h" + "ofPolyline.h" + "ofBaseTypes.h" + "ofMesh.h" + "ofTessellator.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\oftessellator.h + "ofConstants.h" + "ofMesh.h" + "ofTypes.h" + "ofPolyline.h" + "tesselator.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofimage.h + "ofFileUtils.h" + "ofTexture.h" + "ofPixels.h" + "ofBaseTypes.h" + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\ofrenderercollection.h + "ofBaseTypes.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\graphics\oftruetypefont.h + + "ofPoint.h" + "ofRectangle.h" + "ofConstants.h" + "ofPath.h" + "ofTexture.h" + "ofMesh.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\app\ofbaseapp.h + "ofPoint.h" + "ofEvents.h" + "ofBaseTypes.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\app\ofapprunner.h + "ofConstants.h" + "ofPoint.h" + "ofRectangle.h" + "ofTypes.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\ofsoundstream.h + "ofConstants.h" + "ofBaseTypes.h" + "ofBaseApp.h" + "ofTypes.h" + "ofxAndroidSoundStream.h" + "ofRtAudioSoundStream.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\ofrtaudiosoundstream.h + "ofConstants.h" + "ofBaseSoundStream.h" + "ofTypes.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\ofbasesoundstream.h + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\ofsoundplayer.h + "ofConstants.h" + "ofTypes.h" + "fmod.h" + "fmod_errors.h" + "ofBaseTypes.h" + "ofBaseSoundPlayer.h" + "ofQuicktimeSoundPlayer.h" + "ofFmodSoundPlayer.h" + "ofOpenALSoundPlayer.h" + "ofxOpenALSoundPlayer.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\fmodex\include\fmod.h + "fmod_codec.h" + "fmod_dsp.h" + "fmod_memoryinfo.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\fmodex\include\fmod_codec.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\fmodex\include\fmod_dsp.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\fmodex\include\fmod_memoryinfo.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\fmodex\include\fmod_errors.h + "fmod.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\ofbasesoundplayer.h + "ofConstants.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\offmodsoundplayer.h + "ofConstants.h" + "ofBaseSoundPlayer.h" + "fmod.h" + "fmod_errors.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\sound\ofopenalsoundplayer.h + "ofConstants.h" + "ofBaseSoundPlayer.h" + "ofEvents.h" + "ofThread.h" + + + + + "kiss_fft.h" + "kiss_fftr.h" + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofvideograbber.h + "ofConstants.h" + "ofTexture.h" + "ofBaseTypes.h" + "ofPixels.h" + "ofTypes.h" + "ofiPhoneVideoGrabber.h" + "ofQuickTimeGrabber.h" + "ofDirectShowGrabber.h" + "ofGstVideoGrabber.h" + "ofxAndroidVideoGrabber.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofiphonevideograbber.h + "ofVideoGrabber.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofquicktimegrabber.h + "ofConstants.h" + "ofQtUtils.h" + "ofTexture.h" + "ofBaseTypes.h" + "ofPixels.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofqtutils.h + "ofConstants.h" + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\qtml.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\mactypes.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\conditionalmacros.h + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\macmemory.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\mixedmode.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\macwindows.h + + + + + + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\aliases.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\appletalk.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\osutils.h + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\patches.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\datetimeutils.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\endian.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\files.h + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\textcommon.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\utcutils.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\macerrors.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\finder.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\appleevents.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\notification.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\events.h + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\quickdraw.h + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\components.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\quickdrawtext.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\aedatamodel.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\collections.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\drag.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\menus.h + + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\fonts.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\processes.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\qdoffscreen.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\icons.h + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\codefragments.h + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\fixmath.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\quicktimecomponents.h + + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\imagecompression.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\standardfile.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\dialogs.h + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\textedit.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\controls.h + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\movies.h + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\video.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\sound.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\quicktimemusic.h + + + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\textutils.h + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\numberformatting.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\intlresources.h + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\stringcompare.h + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\script.h + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\mediahandlers.h + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofdirectshowgrabber.h + "ofConstants.h" + "ofTexture.h" + "ofBaseTypes.h" + "ofPixels.h" + "videoInput.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\videoinput\include\videoinput.h + + + + + + + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofgstvideograbber.h + "ofGstUtils.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofgstutils.h + "ofConstants.h" + + + "ofConstants.h" + "ofBaseTypes.h" + "ofPixels.h" + "ofTypes.h" + "ofEvents.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofvideoplayer.h + "ofConstants.h" + "ofTexture.h" + "ofBaseTypes.h" + "ofTypes.h" + "ofGstVideoPlayer.h" + "ofQuickTimePlayer.h" + "ofiPhoneVideoPlayer.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofgstvideoplayer.h + "ofGstUtils.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofquicktimeplayer.h + "ofConstants.h" + "ofBaseTypes.h" + "ofPixels.h" + "ofQtUtils.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\video\ofiphonevideoplayer.h + "ofPixels.h" + "ofBaseTypes.h" + "ofTexture.h" + "ofVideoPlayer.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\3d\ofcamera.h + "ofRectangle.h" + "ofAppRunner.h" + "ofNode.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\3d\ofeasycam.h + "ofCamera.h" + "ofEvents.h" + +1310744144 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\apps\examples\exampleWindows\src\main.cpp + "ofMain.h" + "testApp.h" + "ofAppGlutWindow.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\app\ofappglutwindow.h + "ofConstants.h" + "ofAppBaseWindow.h" + "ofEvents.h" + "ofTypes.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\openframeworks\app\ofappbasewindow.h + "ofPoint.h" + "ofTypes.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_buttons.cpp + "GHOST_Buttons.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_buttons.h + "GHOST_Types.h" + +1310756450 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_types.h + "MEM_guardedalloc.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\guardedalloc\include\mem_guardedalloc.h + + "MEM_sys_types.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\guardedalloc\include\mem_sys_types.h + + + + + + + + +1310761956 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_c-api.cpp + + "GHOST_Debug.h" + "GHOST_C-api.h" + "GHOST_ISystem.h" + "GHOST_IEvent.h" + "GHOST_IEventConsumer.h" + "GHOST_CallbackEventConsumer.h" + +1310760920 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_debug.h + + + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_c-api.h + "GHOST_Types.h" + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_isystem.h + "GHOST_Types.h" + "GHOST_ITimerTask.h" + "GHOST_IWindow.h" + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_itimertask.h + "GHOST_Types.h" + +1310761993 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_iwindow.h + "STR_String.h" + "GHOST_Rect.h" + "GHOST_Types.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\string\include\str_string.h + + + + + "MEM_guardedalloc.h" + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_rect.h + "GHOST_Types.h" + + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_ievent.h + + "GHOST_Types.h" + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_ieventconsumer.h + "GHOST_IEvent.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_callbackeventconsumer.h + "GHOST_IEventConsumer.h" + "GHOST_C-api.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_callbackeventconsumer.cpp + "GHOST_Debug.h" + "GHOST_C-api.h" + "GHOST_CallbackEventConsumer.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_displaymanager.cpp + "GHOST_DisplayManager.h" + "GHOST_Debug.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_displaymanager.h + "GHOST_Types.h" + + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventmanager.cpp + "GHOST_EventManager.h" + + "GHOST_Debug.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventmanager.h + + + "GHOST_IEventConsumer.h" + +1310760920 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventprinter.cpp + "GHOST_EventPrinter.h" + + "GHOST_EventKey.h" + "GHOST_EventDragnDrop.h" + "GHOST_Debug.h" + + +1310760920 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventprinter.h + "GHOST_IEventConsumer.h" + "STR_String.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventkey.h + "GHOST_Event.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_event.h + "GHOST_IEvent.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventdragndrop.h + "GHOST_Event.h" + "IMB_imbuf.h" + "IMB_imbuf_types.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\include\imb_imbuf.h + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\include\imb_imbuf_types.h + +1310760920 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_isystem.cpp + "GHOST_ISystem.h" + "GHOST_SystemNULL.h" + "GHOST_SystemSDL.h" + "GHOST_SystemWin32.h" + "GHOST_SystemCocoa.h" + "GHOST_SystemCarbon.h" + "GHOST_SystemX11.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_systemnull.h + "GHOST_System.h" + "../GHOST_Types.h" + "GHOST_DisplayManagerNULL.h" + "GHOST_WindowNULL.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_system.h + "GHOST_ISystem.h" + "GHOST_Debug.h" + "GHOST_Buttons.h" + "GHOST_ModifierKeys.h" + "GHOST_EventManager.h" + "GHOST_EventPrinter.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_modifierkeys.h + "GHOST_Types.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_displaymanagernull.h + "GHOST_DisplayManager.h" + "GHOST_SystemNULL.h" + +1310760920 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_windownull.h + "GHOST_Window.h" + + +1310760920 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_window.h + "GHOST_IWindow.h" + +1310762247 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_systemwin32.h + + "GHOST_System.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_isystempaths.cpp + "GHOST_ISystemPaths.h" + "GHOST_SystemPathsWin32.h" + "GHOST_SystemPathsCocoa.h" + "GHOST_SystemPathsCarbon.h" + "GHOST_SystemPathsX11.h" + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_isystempaths.h + "GHOST_Types.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_systempathswin32.h + + "GHOST_SystemPaths.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_systempaths.h + "GHOST_ISystemPaths.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_modifierkeys.cpp + "GHOST_ModifierKeys.h" + +1310760920 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_ndofmanager.cpp + + "GHOST_NDOFManager.h" + "GHOST_SystemX11.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_ndofmanager.h + "GHOST_System.h" + "GHOST_IWindow.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_path-api.cpp + "intern/GHOST_Debug.h" + "GHOST_Types.h" + "GHOST_Path-api.h" + "GHOST_ISystemPaths.h" + +1310755746 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\include\ghost_path-api.h + "GHOST_Types.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_rect.cpp + "GHOST_Rect.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_system.cpp + "GHOST_System.h" + + + "GHOST_DisplayManager.h" + "GHOST_EventManager.h" + "GHOST_NDOFManager.h" + "GHOST_TimerTask.h" + "GHOST_TimerManager.h" + "GHOST_WindowManager.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_timertask.h + "GHOST_ITimerTask.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_timermanager.h + + "GHOST_Types.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_windowmanager.h + + "GHOST_Rect.h" + "GHOST_IWindow.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_timermanager.cpp + "GHOST_TimerManager.h" + + "GHOST_TimerTask.h" + +1310760920 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_window.cpp + "GHOST_Window.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_windowmanager.cpp + "GHOST_WindowManager.h" + + "GHOST_Debug.h" + "GHOST_Window.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_displaymanagerwin32.cpp + "GHOST_DisplayManagerWin32.h" + "GHOST_Debug.h" + + + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_displaymanagerwin32.h + "GHOST_DisplayManager.h" + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_droptargetwin32.cpp + "GHOST_Debug.h" + "GHOST_DropTargetWin32.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_droptargetwin32.h + + + + "GHOST_WindowWin32.h" + "GHOST_SystemWin32.h" + +1310762318 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_windowwin32.h + "GHOST_Window.h" + + "GHOST_TaskbarWin32.h" + + + +1308287608 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_taskbarwin32.h + + + +1310759128 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\wintab.h + +1310759123 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\pktdef.h + + + + + + + + + +1308255208 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_systempathswin32.cpp + "GHOST_SystemPathsWin32.h" + + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\windows.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\sdkddkver.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winresrc.h + + + + + + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winuser.rh + +1271735044 c:\program files\microsoft sdks\windows\v7.1\include\commctrl.rh + +1271735048 c:\program files\microsoft sdks\windows\v7.1\include\dde.rh + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winnt.rh + +1271735050 c:\program files\microsoft sdks\windows\v7.1\include\dlgs.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winver.h + + + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\specstrings.h + "sal_supp.h" + "specstrings_supp.h" + + + + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\sal_supp.h + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\specstrings_supp.h + "sal_supp.h" + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\specstrings_strict.h + + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\specstrings_undef.h + +1271735050 c:\program files\microsoft sdks\windows\v7.1\include\driverspecs.h + + "sdv_driverspecs.h" + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\sdv_driverspecs.h + +1271735076 c:\program files\microsoft sdks\windows\v7.1\include\verrsrc.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\windef.h + + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winnt.h + + + + + + + + "pshpack4.h" + "poppack.h" + "pshpack4.h" + "poppack.h" + + + "pshpack4.h" + "pshpack2.h" + "pshpack1.h" + "poppack.h" + "pshpack2.h" + + + "poppack.h" + "pshpack8.h" + "poppack.h" + "poppack.h" + + + + +1271735020 c:\program files\microsoft sdks\windows\v7.1\include\kernelspecs.h + "DriverSpecs.h" + +1271735036 c:\program files\microsoft sdks\windows\v7.1\include\basetsd.h + +1271735056 c:\program files\microsoft sdks\windows\v7.1\include\guiddef.h + + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\pshpack4.h + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\poppack.h + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\pshpack2.h + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\pshpack1.h + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\pshpack8.h + +1271735060 c:\program files\microsoft sdks\windows\v7.1\include\ktmtypes.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winbase.h + + + "winbase.inl" + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winerror.h + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winbase.inl + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\wingdi.h + + + + + + + + + + + + "pshpack4.h" + "poppack.h" + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winuser.h + + + + + + "winuser.inl" + +1271735076 c:\program files\microsoft sdks\windows\v7.1\include\tvout.h + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winuser.inl + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winnls.h + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\wincon.h + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winreg.h + + + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\reason.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winnetwk.h + + +1271735082 c:\program files\microsoft sdks\windows\v7.1\include\wnnc.h + +1271735040 c:\program files\microsoft sdks\windows\v7.1\include\cderr.h + +1271735048 c:\program files\microsoft sdks\windows\v7.1\include\dde.h + + +1271735048 c:\program files\microsoft sdks\windows\v7.1\include\ddeml.h + +1271735060 c:\program files\microsoft sdks\windows\v7.1\include\lzexpand.h + +1271735062 c:\program files\microsoft sdks\windows\v7.1\include\mmsystem.h + + + + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\nb30.h + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpc.h + + + + + + + + + + + + + + + + + + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcdce.h + + + + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcdcep.h + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcnsi.h + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcnterr.h + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcasync.h + + + + + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\shellapi.h + + + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winperf.h + + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winsock.h + + + +1271735058 c:\program files\microsoft sdks\windows\v7.1\include\inaddr.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\wincrypt.h + + + + +1271735036 c:\program files\microsoft sdks\windows\v7.1\include\bcrypt.h + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\ncrypt.h + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winefs.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winscard.h + + + "winsmcrd.h" + "SCardErr.h" + +1271735084 c:\program files\microsoft sdks\windows\v7.1\include\wtypes.h + "rpc.h" + "rpcndr.h" + "basetsd.h" + "guiddef.h" + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcndr.h + + + + + + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcnsip.h + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\rpcsal.h + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winioctl.h + + + + + + + + + + + + + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winsmcrd.h + +1271735070 c:\program files\microsoft sdks\windows\v7.1\include\scarderr.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winspool.h + + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\prsht.h + + + "prsht.inl" + + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\prsht.inl + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\ole.h + + + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\ole2.h + + + + + + + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\objbase.h + + + + + + + + + + + + + +1271735076 c:\program files\microsoft sdks\windows\v7.1\include\unknwn.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "wtypes.h" + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\objidl.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "unknwn.h" + +1271735042 c:\program files\microsoft sdks\windows\v7.1\include\cguid.h + +1271735076 c:\program files\microsoft sdks\windows\v7.1\include\urlmon.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + "oleidl.h" + "servprov.h" + "msxml.h" + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\oleidl.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\servprov.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + +1271735064 c:\program files\microsoft sdks\windows\v7.1\include\msxml.h + "rpc.h" + "rpcndr.h" + "unknwn.h" + "objidl.h" + "oaidl.h" + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\oaidl.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\propidl.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + "oaidl.h" + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\oleauto.h + + + + +1271735044 c:\program files\microsoft sdks\windows\v7.1\include\commdlg.h + + + "commdlg.inl" + + +1271735044 c:\program files\microsoft sdks\windows\v7.1\include\commdlg.inl + +1271735074 c:\program files\microsoft sdks\windows\v7.1\include\stralign.h + +1271735080 c:\program files\microsoft sdks\windows\v7.1\include\winsvc.h + +1271735060 c:\program files\microsoft sdks\windows\v7.1\include\mcx.h + +1271735058 c:\program files\microsoft sdks\windows\v7.1\include\imm.h + + +1271735058 c:\program files\microsoft sdks\windows\v7.1\include\ime_cmodes.h + +1271735064 c:\program files\microsoft sdks\windows\v7.1\include\multimon.h + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\shlobj.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1271735044 c:\program files\microsoft sdks\windows\v7.1\include\commctrl.h + + + + + + + + + + + + "commctrl.inl" + +1271735044 c:\program files\microsoft sdks\windows\v7.1\include\commctrl.inl + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\shlguid.h + + + + + +1271735058 c:\program files\microsoft sdks\windows\v7.1\include\isguids.h + +1271735054 c:\program files\microsoft sdks\windows\v7.1\include\exdisp.h + "rpc.h" + "rpcndr.h" + "ocidl.h" + "docobj.h" + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\ocidl.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "oleidl.h" + "oaidl.h" + "servprov.h" + "urlmon.h" + +1271735050 c:\program files\microsoft sdks\windows\v7.1\include\docobj.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "ocidl.h" + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\shldisp.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "ocidl.h" + +1271735058 c:\program files\microsoft sdks\windows\v7.1\include\knownfolders.h + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\shtypes.h + "rpc.h" + "rpcndr.h" + "wtypes.h" + + + + + + + + + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\shobjidl.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + "oleidl.h" + "oaidl.h" + "docobj.h" + "shtypes.h" + "comcat.h" + "propidl.h" + "prsht.h" + "propsys.h" + "ObjectArray.h" + + + + + + + + + + + + + + + + + + + + + + +1271735044 c:\program files\microsoft sdks\windows\v7.1\include\comcat.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "unknwn.h" + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\propsys.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "objidl.h" + "oleidl.h" + "ocidl.h" + "shtypes.h" + "StructuredQueryCondition.h" + + +1271735074 c:\program files\microsoft sdks\windows\v7.1\include\structuredquerycondition.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "oaidl.h" + "ocidl.h" + "propidl.h" + +1271735068 c:\program files\microsoft sdks\windows\v7.1\include\propkeydef.h + +1271735066 c:\program files\microsoft sdks\windows\v7.1\include\objectarray.h + "rpc.h" + "rpcndr.h" + "windows.h" + "ole2.h" + "oaidl.h" + "ocidl.h" + +1271735072 c:\program files\microsoft sdks\windows\v7.1\include\sherrors.h + + +1310761299 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_systemwin32.cpp + + "GHOST_SystemWin32.h" + "GHOST_EventDragnDrop.h" + + + "GHOST_Debug.h" + "GHOST_DisplayManagerWin32.h" + "GHOST_EventButton.h" + "GHOST_EventCursor.h" + "GHOST_EventKey.h" + "GHOST_EventWheel.h" + "GHOST_EventNDOF.h" + "GHOST_TimerTask.h" + "GHOST_TimerManager.h" + "GHOST_WindowManager.h" + "GHOST_WindowWin32.h" + "GHOST_NDOFManager.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventbutton.h + "GHOST_Event.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventcursor.h + "GHOST_Event.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventwheel.h + "GHOST_Event.h" + +1308255208 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\ghost_eventndof.h + "GHOST_Event.h" + +1310763509 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\ghost\src\win32\ghost_windowwin32.cpp + + "GHOST_WindowWin32.h" + "GHOST_SystemWin32.h" + "GHOST_SystemWin32.h" + "GHOST_DropTargetWin32.h" + + + + +1310755747 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\guardedalloc\src\mallocn.c + + + + + "mmap_win.h" + + "MEM_guardedalloc.h" + + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\guardedalloc\include\mmap_win.h + "MEM_sys_types.h" + +1310755747 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\guardedalloc\src\mallocn.cpp + + "MEM_guardedalloc.h" + +1310755747 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\guardedalloc\src\mmap_win.c + + + + + + "mmap_win.h" + +1310755747 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\string\src\str_string.cpp + + + + + + + "STR_String.h" + +1310744144 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\libs\quicktime\include\strings.h + + +1310755747 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\src\ofxfenster.cpp + "ofxFenster.h" + "ofMain.h" + "GHOST_ISystem.h" + "GHOST_IWindow.h" + "ofxFensterManager.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\src\ofxfenster.h + + + "ofAppBaseWindow.h" + "ofBaseApp.h" + "ofGLRenderer.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\src\ofxfenstermanager.h + "ofAppBaseWindow.h" + "ofEvents.h" + "ofxFenster.h" + "GHOST_IEventConsumer.h" + "GHOST_ISystem.h" + +1310755747 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\src\ofxfenstermanager.cpp + "ofxFensterManager.h" + "ofMain.h" + "STR_String.h" + "GHOST_Rect.h" + "GHOST_IEvent.h" + "GHOST_SystemX11.h" + +1310755746 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\apps\addonsexamples\ofxfensterexample\src\main.cpp + "ofMain.h" + "testApp.h" + "ofxFensterManager.h" + "ofAppGlutWindow.h" + +1310763325 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\apps\addonsexamples\ofxfensterexample\src\testapp.h + "ofMain.h" + "ofxFensterManager.h" + +1310755746 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\apps\addonsexamples\ofxfensterexample\src\testapp.cpp + "testApp.h" + +1310763011 source:c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\src\allocimbuf.c + + "IMB_imbuf.h" + "IMB_imbuf_types.h" + "IMB_allocimbuf.h" + "IMB_filetype.h" + "IMB_metadata.h" + "imbuf.h" + "MEM_CacheLimiterC-Api.h" + "MEM_guardedalloc.h" + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\include\imb_allocimbuf.h + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\include\imb_filetype.h + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\include\imb_metadata.h + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\imbuf\include\imbuf.h + + + + + + + + + + +1310755747 c:\users\administrator\desktop\openframeworks-openframeworks-f4ff109\addons\ofxfenster\libs\memutil\include\mem_cachelimiterc-api.h + diff --git a/exampleSpanningImage/exampleWindows.workspace b/exampleSpanningImage/exampleWindows.workspace new file mode 100644 index 0000000..fd33252 --- /dev/null +++ b/exampleSpanningImage/exampleWindows.workspace @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/exampleSpanningImage/exampleWindowsVS.sln b/exampleSpanningImage/exampleWindowsVS.sln new file mode 100644 index 0000000..87d3a5b --- /dev/null +++ b/exampleSpanningImage/exampleWindowsVS.sln @@ -0,0 +1,25 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual C++ Express 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exampleWindowsVS", "exampleWindowsVS.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs2010\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32 + {7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32 + {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32 + {7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 + {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32 + {5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32 + {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32 + {5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/exampleSpanningImage/exampleWindowsVS.vcxproj b/exampleSpanningImage/exampleWindowsVS.vcxproj new file mode 100644 index 0000000..3e6ae13 --- /dev/null +++ b/exampleSpanningImage/exampleWindowsVS.vcxproj @@ -0,0 +1,194 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {7FD42DF7-442E-479A-BA76-D0022F99702A} + exampleWindowsVS + Win32Proj + + + + Application + Unicode + true + + + Application + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + bin\ + obj\$(Configuration)\ + true + true + bin\ + obj\$(Configuration)\ + false + $(ProjectName)_debug + $(ProjectName) + + + + Disabled + ..\..\..\addons\ofxFenster\libs\string\include;..\..\..\addons\ofxFenster\libs\ghost\include;..\..\..\addons\ofxFenster\src;..\..\..\libs\openFrameworks;..\..\..\libs\openFrameworks\graphics;..\..\..\libs\openFrameworks\app;..\..\..\libs\openFrameworks\sound;..\..\..\libs\openFrameworks\utils;..\..\..\libs\openFrameworks\communication;..\..\..\libs\openFrameworks\video;..\..\..\libs\openFrameworks\math;..\..\..\libs\openFrameworks\types;..\..\..\libs\openFrameworks\events;..\..\..\libs\glut\include;..\..\..\libs\rtAudio\include;..\..\..\libs\quicktime\include;..\..\..\libs\freetype\include;..\..\..\libs\freetype\include\freetype2;..\..\..\libs\freeImage\include;..\..\..\libs\fmodex\include;..\..\..\libs\videoInput\include;..\..\..\libs\glew\include\;..\..\..\libs\glu\include;..\..\..\libs\poco\include;..\..\..\addons;..\..\..\libs\openFrameworks\gl;..\..\..\libs\openFrameworks\3d;..\..\..\libs\tess2\include;..\..\..\libs\cairo\include\cairo;..\..\..\addons\ofxNetwork\src;..\..\..\addons\ofxDirList\src;..\..\..\addons\ofxObjLoader\src;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\src;..\..\..\addons\ofxOsc\src;..\..\..\addons\ofxOsc\libs\oscpack\include\ip;..\..\..\addons\ofxOsc\libs\oscpack\include\osc;..\..\..\addons\ofxThread\src;..\..\..\addons\ofxVectorGraphics\src;..\..\..\addons\ofxVectorGraphics\libs;..\..\..\addons\ofxVectorMath\src;..\..\..\addons\ofxXMLSettings\libs;..\..\..\addons\ofxXMLSettings\src;..\..\..\addons\ofx3DModelLoader\src;..\..\..\addons\ofx3DModelLoader\src\3DS;..\..\..\addons\ofxAssimpModelLoader\src;..\..\..\addons\ofxAssimpModelLoader\libs\assimp\include;..\..\..\addons\ofxThreadedImageLoader\src;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_CONSOLE;POCO_STATIC;CAIRO_WIN32_STATIC_BUILD;DISABLE_SOME_FLOATING_POINT;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + /D "_ITERATOR_DEBUG_LEVEL=2" %(AdditionalOptions) + + + openframeworksLibDebug.lib;cairo-static.lib;pixman-1.lib;msimg32.lib;OpenGL32.lib;GLu32.lib;kernel32.lib;setupapi.lib;Vfw32.lib;comctl32.lib;glut32.lib;rtAudioD.lib;videoInput.lib;libfreetype.lib;FreeImage.lib;qtmlClient.lib;dsound.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;glew32s.lib;fmodex_vc.lib;glu32.lib;PocoFoundationmdd.lib;PocoNetmdd.lib;PocoUtilmdd.lib;PocoXMLmdd.lib;Ws2_32.lib;tess2.lib;..\..\..\addons\ofxFenster\libs\ghost\lib\win_vs\libghost_debug.lib;%(AdditionalDependencies) + $(OutDir)$(TargetName)$(TargetExt) + ..\..\..\libs\glut\lib\vs2010;..\..\..\libs\rtAudio\lib\vs2010;..\..\..\libs\FreeImage\lib\vs2010;..\..\..\libs\freetype\lib\vs2010;..\..\..\libs\quicktime\lib\vs2010;..\..\..\libs\fmodex\lib\vs2010;..\..\..\libs\videoInput\lib\vs2010;..\..\..\libs\cairo\lib\vs2010;..\..\..\libs\glew\lib\vs2010;..\..\..\libs\glu\lib\vs2010;..\..\..\libs\Poco\lib\vs2010;..\..\..\libs\tess2\lib\vs2010;..\..\..\libs\openFrameworksCompiled\lib\vs2010;%(AdditionalLibraryDirectories) + atlthunk.lib;LIBC.lib;LIBCMT;%(IgnoreSpecificDefaultLibraries) + true + $(TargetDir)$(TargetName)_debugInfo.pdb + Console + false + + + MachineX86 + + + adding DLLs and creating data folder + xcopy /e /i /y "$(ProjectDir)..\..\..\export\vs2010\*.dll" "$(ProjectDir)bin" +if not exist "$(ProjectDir)bin\data" mkdir "$(ProjectDir)bin\data" + + + + + + + + + + + + + + false + ..\..\..\addons\ofxFenster\libs\string\include;..\..\..\addons\ofxFenster\libs\ghost\include;..\..\..\addons\ofxFenster\src;..\..\..\libs\openFrameworks;..\..\..\libs\openFrameworks\graphics;..\..\..\libs\openFrameworks\app;..\..\..\libs\openFrameworks\sound;..\..\..\libs\openFrameworks\utils;..\..\..\libs\openFrameworks\communication;..\..\..\libs\openFrameworks\video;..\..\..\libs\openFrameworks\math;..\..\..\libs\openFrameworks\types;..\..\..\libs\openFrameworks\events;..\..\..\libs\glut\include;..\..\..\libs\rtAudio\include;..\..\..\libs\quicktime\include;..\..\..\libs\freetype\include;..\..\..\libs\freetype\include\freetype2;..\..\..\libs\freeImage\include;..\..\..\libs\fmodex\include;..\..\..\libs\videoInput\include;..\..\..\libs\glew\include\;..\..\..\libs\glu\include;..\..\..\libs\poco\include;..\..\..\addons;..\..\..\libs\openFrameworks\gl;..\..\..\libs\openFrameworks\3d;..\..\..\libs\tess2\include;..\..\..\libs\cairo\include\cairo;..\..\..\addons\ofxNetwork\src;..\..\..\addons\ofxDirList\src;..\..\..\addons\ofxObjLoader\src;..\..\..\addons\ofxOpenCv\libs\opencv\include;..\..\..\addons\ofxOpenCv\libs\opencv\include\opencv;..\..\..\addons\ofxOpenCv\src;..\..\..\addons\ofxOsc\src;..\..\..\addons\ofxOsc\libs\oscpack\include\ip;..\..\..\addons\ofxOsc\libs\oscpack\include\osc;..\..\..\addons\ofxThread\src;..\..\..\addons\ofxVectorGraphics\src;..\..\..\addons\ofxVectorGraphics\libs;..\..\..\addons\ofxVectorMath\src;..\..\..\addons\ofxXMLSettings\libs;..\..\..\addons\ofxXMLSettings\src;..\..\..\addons\ofx3DModelLoader\src;..\..\..\addons\ofx3DModelLoader\src\3DS;..\..\..\addons\ofxAssimpModelLoader\src;..\..\..\addons\ofxAssimpModelLoader\libs\assimp\include;..\..\..\addons\ofxThreadedImageLoader\src;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_CONSOLE;POCO_STATIC;CAIRO_WIN32_STATIC_BUILD;DISABLE_SOME_FLOATING_POINT;%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + + + + + openframeworksLib.lib;cairo-static.lib;pixman-1.lib;msimg32.lib;OpenGL32.lib;GLu32.lib;kernel32.lib;setupapi.lib;glut32.lib;rtAudio.lib;videoInput.lib;libfreetype.lib;FreeImage.lib;qtmlClient.lib;dsound.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;glew32s.lib;fmodex_vc.lib;glu32.lib;Vfw32.lib;comctl32.lib;PocoFoundationmd.lib;PocoNetmd.lib;PocoUtilmd.lib;PocoXMLmd.lib;Ws2_32.lib;tess2.lib;..\..\..\addons\ofxFenster\libs\ghost\lib\win_vs\libghost.lib;%(AdditionalDependencies) + ..\..\..\libs\glut\lib\vs2010;..\..\..\libs\rtAudio\lib\vs2010;..\..\..\libs\FreeImage\lib\vs2010;..\..\..\libs\freetype\lib\vs2010;..\..\..\libs\quicktime\lib\vs2010;..\..\..\libs\fmodex\lib\vs2010;..\..\..\libs\videoInput\lib\vs2010;..\..\..\libs\cairo\lib\vs2010;..\..\..\libs\glew\lib\vs2010;..\..\..\libs\glu\lib\vs2010;..\..\..\libs\Poco\lib\vs2010;..\..\..\libs\tess2\lib\vs2010;..\..\..\libs\openFrameworksCompiled\lib\vs2010;%(AdditionalLibraryDirectories) + false + atlthunk.lib; LIBC.lib; LIBCMT;%(IgnoreSpecificDefaultLibraries) + false + Console + true + true + false + + + MachineX86 + Default + + + adding DLLs and creating data folder + xcopy /e /i /y "$(ProjectDir)\..\..\..\export\vs2010\*.dll" "$(ProjectDir)\bin" +if not exist "$(ProjectDir)\bin\data" mkdir "$(ProjectDir)\bin\data" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {5837595d-aca9-485c-8e76-729040ce4b0b} + false + + + + + + \ No newline at end of file diff --git a/exampleSpanningImage/exampleWindowsVS.vcxproj.filters b/exampleSpanningImage/exampleWindowsVS.vcxproj.filters new file mode 100644 index 0000000..e604d2c --- /dev/null +++ b/exampleSpanningImage/exampleWindowsVS.vcxproj.filters @@ -0,0 +1,195 @@ + + + + + + addons\ofxFenster\src + + + addons\ofxFenster\src + + + addons\ofxFenster\src + + + addons\ofxFenster\src + + + + + + + addons\ofxFenster\src + + + addons\ofxFenster\src + + + addons\ofxFenster\src + + + addons\ofxFenster\src + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\ghost\include\WIN32 + + + addons\ofxFenster\libs\string\include + + + + + {b36e9f1c-2a12-4612-9cf0-1a7f1bf749af} + + + {08b40def-991a-4d93-ad82-3a0fee725564} + + + {3a819065-5ea0-49a3-88ec-044f1964f99c} + + + {1b7885ff-a379-46a7-bdcb-5313b9474ea8} + + + {55431176-48ed-492e-9e4c-06819e1999f5} + + + {25fef81d-728f-46d5-88e1-9075794755f7} + + + {50ac4568-a8eb-4757-811a-151894507f38} + + + {6d5dd2f4-8bd5-4a83-866a-2d1a3143b60b} + + + {a9dd3393-b5fd-467b-aa6e-6c1987eff59c} + + + \ No newline at end of file diff --git a/exampleSpanningImage/exampleWindowsVS.vcxproj.user b/exampleSpanningImage/exampleWindowsVS.vcxproj.user new file mode 100644 index 0000000..e5836fd --- /dev/null +++ b/exampleSpanningImage/exampleWindowsVS.vcxproj.user @@ -0,0 +1,12 @@ + + + + $(ProjectDir)/bin + WindowsLocalDebugger + false + + + $(ProjectDir)/bin + WindowsLocalDebugger + + \ No newline at end of file diff --git a/exampleSpanningImage/ofxFensterExampleSpanning.xcodeproj/project.pbxproj b/exampleSpanningImage/ofxFensterExampleSpanning.xcodeproj/project.pbxproj new file mode 100644 index 0000000..e73f0fb --- /dev/null +++ b/exampleSpanningImage/ofxFensterExampleSpanning.xcodeproj/project.pbxproj @@ -0,0 +1,673 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 48D0339813AE3F4600FFC1C5 /* ofxFenster.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48D0332B13AE3F4600FFC1C5 /* ofxFenster.cpp */; }; + 48D0339913AE3F4600FFC1C5 /* ofxFensterManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48D0332D13AE3F4600FFC1C5 /* ofxFensterManager.cpp */; }; + E4328149138ABC9F0047C5CB /* openFrameworksDebug.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E4328148138ABC890047C5CB /* openFrameworksDebug.a */; }; + E45BE97C0E8CC7DD009D7055 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9720E8CC7DD009D7055 /* ApplicationServices.framework */; }; + E45BE97D0E8CC7DD009D7055 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9730E8CC7DD009D7055 /* AudioToolbox.framework */; }; + E45BE97E0E8CC7DD009D7055 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9740E8CC7DD009D7055 /* Carbon.framework */; }; + E45BE97F0E8CC7DD009D7055 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9750E8CC7DD009D7055 /* CoreAudio.framework */; }; + E45BE9800E8CC7DD009D7055 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9760E8CC7DD009D7055 /* CoreFoundation.framework */; }; + E45BE9810E8CC7DD009D7055 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9770E8CC7DD009D7055 /* CoreServices.framework */; }; + E45BE9840E8CC7DD009D7055 /* QuickTime.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE97A0E8CC7DD009D7055 /* QuickTime.framework */; }; + E4B69E200A3A1BDC003C02F2 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B69E1D0A3A1BDC003C02F2 /* main.cpp */; }; + E4B69E210A3A1BDC003C02F2 /* testApp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */; }; + E4C2424710CC5A17004149E2 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424410CC5A17004149E2 /* AppKit.framework */; }; + E4C2424910CC5A17004149E2 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424610CC5A17004149E2 /* IOKit.framework */; }; + FA2780BF13D8526600AD75E1 /* libGhost32.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA2780BE13D8526600AD75E1 /* libGhost32.a */; }; + FA37630913D862BC00E7EBDE /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA37630813D862BC00E7EBDE /* OpenGL.framework */; }; + FAB311C81434CCF60063589B /* ofxDisplayManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAB311C71434CCF60063589B /* ofxDisplayManager.cpp */; }; + FAB311CD1434CDA70063589B /* ofxDisplay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAB311CC1434CDA70063589B /* ofxDisplay.cpp */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + E4328147138ABC890047C5CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = E4B27C1510CBEB8E00536013; + remoteInfo = openFrameworks; + }; + E4EEB9AB138B136A00A80321 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = E4B27C1410CBEB8E00536013; + remoteInfo = openFrameworks; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + E4C2427710CC5ABF004149E2 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 48D032E213AE3F4600FFC1C5 /* GHOST_C-api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GHOST_C-api.h"; sourceTree = ""; }; + 48D032E313AE3F4600FFC1C5 /* GHOST_IEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_IEvent.h; sourceTree = ""; }; + 48D032E413AE3F4600FFC1C5 /* GHOST_IEventConsumer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_IEventConsumer.h; sourceTree = ""; }; + 48D032E513AE3F4600FFC1C5 /* GHOST_ISystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_ISystem.h; sourceTree = ""; }; + 48D032E613AE3F4600FFC1C5 /* GHOST_ISystemPaths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_ISystemPaths.h; sourceTree = ""; }; + 48D032E713AE3F4600FFC1C5 /* GHOST_ITimerTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_ITimerTask.h; sourceTree = ""; }; + 48D032E813AE3F4600FFC1C5 /* GHOST_IWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_IWindow.h; sourceTree = ""; }; + 48D032E913AE3F4600FFC1C5 /* GHOST_Path-api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GHOST_Path-api.h"; sourceTree = ""; }; + 48D032EA13AE3F4600FFC1C5 /* GHOST_Rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_Rect.h; sourceTree = ""; }; + 48D032EB13AE3F4600FFC1C5 /* GHOST_Types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHOST_Types.h; sourceTree = ""; }; + 48D0332B13AE3F4600FFC1C5 /* ofxFenster.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxFenster.cpp; sourceTree = ""; }; + 48D0332C13AE3F4600FFC1C5 /* ofxFenster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxFenster.h; sourceTree = ""; }; + 48D0332D13AE3F4600FFC1C5 /* ofxFensterManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxFensterManager.cpp; sourceTree = ""; }; + 48D0332E13AE3F4600FFC1C5 /* ofxFensterManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxFensterManager.h; sourceTree = ""; }; + E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = openFrameworksLib.xcodeproj; path = ../../../libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj; sourceTree = SOURCE_ROOT; }; + E45BE9720E8CC7DD009D7055 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = ""; }; + E45BE9730E8CC7DD009D7055 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = ""; }; + E45BE9740E8CC7DD009D7055 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; + E45BE9750E8CC7DD009D7055 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = ""; }; + E45BE9760E8CC7DD009D7055 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = ""; }; + E45BE9770E8CC7DD009D7055 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = /System/Library/Frameworks/CoreServices.framework; sourceTree = ""; }; + E45BE97A0E8CC7DD009D7055 /* QuickTime.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = /System/Library/Frameworks/QuickTime.framework; sourceTree = ""; }; + E4B69B5B0A3A1756003C02F2 /* emptyExampleDebug.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = emptyExampleDebug.app; sourceTree = BUILT_PRODUCTS_DIR; }; + E4B69E1D0A3A1BDC003C02F2 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = SOURCE_ROOT; }; + E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = testApp.cpp; path = src/testApp.cpp; sourceTree = SOURCE_ROOT; }; + E4B69E1F0A3A1BDC003C02F2 /* testApp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = testApp.h; path = src/testApp.h; sourceTree = SOURCE_ROOT; }; + E4B6FCAD0C3E899E008CF71C /* openFrameworks-Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = "openFrameworks-Info.plist"; sourceTree = ""; }; + E4C2424410CC5A17004149E2 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + E4C2424610CC5A17004149E2 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; + E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = CoreOF.xcconfig; path = ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig; sourceTree = SOURCE_ROOT; }; + E4EB6923138AFD0F00A09F29 /* Project.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = ""; }; + FA2780BD13D8524F00AD75E1 /* STR_String.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = STR_String.h; sourceTree = ""; }; + FA2780BE13D8526600AD75E1 /* libGhost32.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGhost32.a; path = ../../../addons/ofxFenster/libs/ghost/lib/osx32/libGhost32.a; sourceTree = SOURCE_ROOT; }; + FA37630813D862BC00E7EBDE /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; + FAB311C61434CCF60063589B /* ofxDisplayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxDisplayManager.h; sourceTree = ""; }; + FAB311C71434CCF60063589B /* ofxDisplayManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxDisplayManager.cpp; sourceTree = ""; }; + FAB311CB1434CDA70063589B /* ofxDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxDisplay.h; sourceTree = ""; }; + FAB311CC1434CDA70063589B /* ofxDisplay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxDisplay.cpp; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + E4B69B590A3A1756003C02F2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E4328149138ABC9F0047C5CB /* openFrameworksDebug.a in Frameworks */, + E45BE97C0E8CC7DD009D7055 /* ApplicationServices.framework in Frameworks */, + E45BE97D0E8CC7DD009D7055 /* AudioToolbox.framework in Frameworks */, + E45BE97E0E8CC7DD009D7055 /* Carbon.framework in Frameworks */, + E45BE97F0E8CC7DD009D7055 /* CoreAudio.framework in Frameworks */, + E45BE9800E8CC7DD009D7055 /* CoreFoundation.framework in Frameworks */, + E45BE9810E8CC7DD009D7055 /* CoreServices.framework in Frameworks */, + E45BE9840E8CC7DD009D7055 /* QuickTime.framework in Frameworks */, + E4C2424710CC5A17004149E2 /* AppKit.framework in Frameworks */, + E4C2424910CC5A17004149E2 /* IOKit.framework in Frameworks */, + FA2780BF13D8526600AD75E1 /* libGhost32.a in Frameworks */, + FA37630913D862BC00E7EBDE /* OpenGL.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 48D0326E13AE3F4600FFC1C5 /* ofxfenster */ = { + isa = PBXGroup; + children = ( + 48D032DF13AE3F4600FFC1C5 /* libs */, + 48D0332A13AE3F4600FFC1C5 /* src */, + ); + name = ofxfenster; + path = ../../../addons/ofxfenster; + sourceTree = SOURCE_ROOT; + }; + 48D032DF13AE3F4600FFC1C5 /* libs */ = { + isa = PBXGroup; + children = ( + FA2780BE13D8526600AD75E1 /* libGhost32.a */, + FA2780BB13D8524F00AD75E1 /* string */, + 48D032E013AE3F4600FFC1C5 /* ghost */, + ); + path = libs; + sourceTree = ""; + }; + 48D032E013AE3F4600FFC1C5 /* ghost */ = { + isa = PBXGroup; + children = ( + 48D032E113AE3F4600FFC1C5 /* include */, + ); + path = ghost; + sourceTree = ""; + }; + 48D032E113AE3F4600FFC1C5 /* include */ = { + isa = PBXGroup; + children = ( + 48D032E213AE3F4600FFC1C5 /* GHOST_C-api.h */, + 48D032E313AE3F4600FFC1C5 /* GHOST_IEvent.h */, + 48D032E413AE3F4600FFC1C5 /* GHOST_IEventConsumer.h */, + 48D032E513AE3F4600FFC1C5 /* GHOST_ISystem.h */, + 48D032E613AE3F4600FFC1C5 /* GHOST_ISystemPaths.h */, + 48D032E713AE3F4600FFC1C5 /* GHOST_ITimerTask.h */, + 48D032E813AE3F4600FFC1C5 /* GHOST_IWindow.h */, + 48D032E913AE3F4600FFC1C5 /* GHOST_Path-api.h */, + 48D032EA13AE3F4600FFC1C5 /* GHOST_Rect.h */, + 48D032EB13AE3F4600FFC1C5 /* GHOST_Types.h */, + ); + path = include; + sourceTree = ""; + }; + 48D0332A13AE3F4600FFC1C5 /* src */ = { + isa = PBXGroup; + children = ( + 48D0332B13AE3F4600FFC1C5 /* ofxFenster.cpp */, + 48D0332C13AE3F4600FFC1C5 /* ofxFenster.h */, + 48D0332D13AE3F4600FFC1C5 /* ofxFensterManager.cpp */, + 48D0332E13AE3F4600FFC1C5 /* ofxFensterManager.h */, + FAB311C61434CCF60063589B /* ofxDisplayManager.h */, + FAB311C71434CCF60063589B /* ofxDisplayManager.cpp */, + FAB311CB1434CDA70063589B /* ofxDisplay.h */, + FAB311CC1434CDA70063589B /* ofxDisplay.cpp */, + ); + path = src; + sourceTree = ""; + }; + BB4B014C10F69532006C3DED /* addons */ = { + isa = PBXGroup; + children = ( + 48D0326E13AE3F4600FFC1C5 /* ofxfenster */, + ); + name = addons; + sourceTree = ""; + }; + BBAB23C913894ECA00AA2426 /* system frameworks */ = { + isa = PBXGroup; + children = ( + E4C2424410CC5A17004149E2 /* AppKit.framework */, + E4C2424610CC5A17004149E2 /* IOKit.framework */, + E45BE9720E8CC7DD009D7055 /* ApplicationServices.framework */, + E45BE9730E8CC7DD009D7055 /* AudioToolbox.framework */, + E45BE9740E8CC7DD009D7055 /* Carbon.framework */, + E45BE9750E8CC7DD009D7055 /* CoreAudio.framework */, + E45BE9760E8CC7DD009D7055 /* CoreFoundation.framework */, + E45BE9770E8CC7DD009D7055 /* CoreServices.framework */, + E45BE97A0E8CC7DD009D7055 /* QuickTime.framework */, + FA37630813D862BC00E7EBDE /* OpenGL.framework */, + ); + name = "system frameworks"; + sourceTree = ""; + }; + BBAB23CA13894EDB00AA2426 /* 3rd party frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = "3rd party frameworks"; + sourceTree = ""; + }; + E4328144138ABC890047C5CB /* Products */ = { + isa = PBXGroup; + children = ( + E4328148138ABC890047C5CB /* openFrameworksDebug.a */, + ); + name = Products; + sourceTree = ""; + }; + E45BE5980E8CC70C009D7055 /* frameworks */ = { + isa = PBXGroup; + children = ( + BBAB23CA13894EDB00AA2426 /* 3rd party frameworks */, + BBAB23C913894ECA00AA2426 /* system frameworks */, + ); + name = frameworks; + sourceTree = ""; + }; + E4B69B4A0A3A1720003C02F2 = { + isa = PBXGroup; + children = ( + E4B69E1C0A3A1BDC003C02F2 /* src */, + E4EEC9E9138DF44700A80321 /* openFrameworks */, + BB4B014C10F69532006C3DED /* addons */, + E45BE5980E8CC70C009D7055 /* frameworks */, + E4B69B5B0A3A1756003C02F2 /* emptyExampleDebug.app */, + ); + sourceTree = ""; + }; + E4B69E1C0A3A1BDC003C02F2 /* src */ = { + isa = PBXGroup; + children = ( + E4B69E1D0A3A1BDC003C02F2 /* main.cpp */, + E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */, + E4B69E1F0A3A1BDC003C02F2 /* testApp.h */, + ); + path = src; + sourceTree = SOURCE_ROOT; + }; + E4EEC9E9138DF44700A80321 /* openFrameworks */ = { + isa = PBXGroup; + children = ( + E4EB6923138AFD0F00A09F29 /* Project.xcconfig */, + E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */, + E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */, + E4B6FCAD0C3E899E008CF71C /* openFrameworks-Info.plist */, + ); + name = openFrameworks; + sourceTree = ""; + }; + FA2780BB13D8524F00AD75E1 /* string */ = { + isa = PBXGroup; + children = ( + FA2780BC13D8524F00AD75E1 /* include */, + ); + name = string; + path = ../../../addons/ofxFenster/libs/string; + sourceTree = SOURCE_ROOT; + }; + FA2780BC13D8524F00AD75E1 /* include */ = { + isa = PBXGroup; + children = ( + FA2780BD13D8524F00AD75E1 /* STR_String.h */, + ); + path = include; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + E4B69B5A0A3A1756003C02F2 /* emptyExample */ = { + isa = PBXNativeTarget; + buildConfigurationList = E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "emptyExample" */; + buildPhases = ( + E4B69B580A3A1756003C02F2 /* Sources */, + E4B69B590A3A1756003C02F2 /* Frameworks */, + E4B6FFFD0C3F9AB9008CF71C /* ShellScript */, + E4C2427710CC5ABF004149E2 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + E4EEB9AC138B136A00A80321 /* PBXTargetDependency */, + ); + name = emptyExample; + productName = myOFApp; + productReference = E4B69B5B0A3A1756003C02F2 /* emptyExampleDebug.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + E4B69B4C0A3A1720003C02F2 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "ofxFensterExampleSpanning" */; + compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 0; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = E4B69B4A0A3A1720003C02F2; + productRefGroup = E4B69B4A0A3A1720003C02F2; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = E4328144138ABC890047C5CB /* Products */; + ProjectRef = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + E4B69B5A0A3A1756003C02F2 /* emptyExample */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + E4328148138ABC890047C5CB /* openFrameworksDebug.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = openFrameworksDebug.a; + remoteRef = E4328147138ABC890047C5CB /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXShellScriptBuildPhase section */ + E4B6FFFD0C3F9AB9008CF71C /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "cp -f ../../../libs/fmodex/lib/osx/libfmodex.dylib $TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/libfmodex.dylib;\ninstall_name_tool -change ./libfmodex.dylib @executable_path/libfmodex.dylib $TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + E4B69B580A3A1756003C02F2 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E4B69E200A3A1BDC003C02F2 /* main.cpp in Sources */, + E4B69E210A3A1BDC003C02F2 /* testApp.cpp in Sources */, + 48D0339813AE3F4600FFC1C5 /* ofxFenster.cpp in Sources */, + 48D0339913AE3F4600FFC1C5 /* ofxFensterManager.cpp in Sources */, + FAB311C81434CCF60063589B /* ofxDisplayManager.cpp in Sources */, + FAB311CD1434CDA70063589B /* ofxDisplay.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + E4EEB9AC138B136A00A80321 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = openFrameworks; + targetProxy = E4EEB9AB138B136A00A80321 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + E4B69B4E0A3A1720003C02F2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */; + buildSettings = { + ARCHS = "$(NATIVE_ARCH)"; + CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + GCC_AUTO_VECTORIZATION = YES; + GCC_ENABLE_SSE3_EXTENSIONS = YES; + GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_MODEL_TUNING = G5; + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; + GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO; + GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO; + GCC_WARN_UNINITIALIZED_AUTOS = NO; + GCC_WARN_UNUSED_VALUE = NO; + GCC_WARN_UNUSED_VARIABLE = NO; + OTHER_CPLUSPLUSFLAGS = ( + "-D__MACOSX_CORE__", + "-lpthread", + ); + }; + name = Debug; + }; + E4B69B4F0A3A1720003C02F2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */; + buildSettings = { + ARCHS = "$(NATIVE_ARCH)"; + CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/"; + COPY_PHASE_STRIP = YES; + DEAD_CODE_STRIPPING = YES; + GCC_AUTO_VECTORIZATION = YES; + GCC_ENABLE_SSE3_EXTENSIONS = YES; + GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 3; + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_UNROLL_LOOPS = YES; + GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; + GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO; + GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO; + GCC_WARN_UNINITIALIZED_AUTOS = NO; + GCC_WARN_UNUSED_VALUE = NO; + GCC_WARN_UNUSED_VARIABLE = NO; + OTHER_CPLUSPLUSFLAGS = ( + "-D__MACOSX_CORE__", + "-lpthread", + ); + }; + name = Release; + }; + E4B69B600A3A1757003C02F2 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", + ); + FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../libs/glut/lib/osx\""; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_MODEL_TUNING = G4; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Headers/Carbon.h"; + INFOPLIST_FILE = "openFrameworks-Info.plist"; + INSTALL_PATH = "$(HOME)/Applications"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_14)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_15)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_16)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_17)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_18)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_19)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_20)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_21)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_22)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_23)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_24)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_25)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_26)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_27)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_28)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_29)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_30)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_31)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_32)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_33)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_34)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_35)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_36)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_37)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_38)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_39)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_40)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_41)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_42)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_43)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_44)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_45)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_46)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_47)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_48)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_49)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_50)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_51)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_52)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)", + ); + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/android/armeabi\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/android/armeabi-v7a\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/iphone\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/linux\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/linux64\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/osx\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/vs2010\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/win_cb\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9 = "\"$(SRCROOT)/../../../addons/ofxFenster/libs/ghost/lib/osx32\""; + PREBINDING = NO; + PRODUCT_NAME = "$(TARGET_NAME)Debug"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + E4B69B610A3A1757003C02F2 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", + ); + FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../libs/glut/lib/osx\""; + GCC_ENABLE_FIX_AND_CONTINUE = NO; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G4; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Headers/Carbon.h"; + INFOPLIST_FILE = "openFrameworks-Info.plist"; + INSTALL_PATH = "$(HOME)/Applications"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_14)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_15)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_16)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_17)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_18)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_19)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_20)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_21)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_22)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_23)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_24)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_25)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_26)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_27)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_28)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_29)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_30)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_31)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_32)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_33)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_34)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_35)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_36)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_37)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_38)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_39)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_40)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_41)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_42)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_43)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_44)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_45)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_46)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_47)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_48)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_49)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_50)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_51)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)", + ); + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/android/armeabi\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/android/armeabi-v7a\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/iphone\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/linux\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/linux64\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/osx\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/vs2010\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8 = "\"$(SRCROOT)/../../../addons/ofxOpenCv/libs/opencv/lib/win_cb\""; + LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9 = "\"$(SRCROOT)/../../../addons/ofxFenster/libs/ghost/lib/osx32\""; + PREBINDING = NO; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "ofxFensterExampleSpanning" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E4B69B4E0A3A1720003C02F2 /* Debug */, + E4B69B4F0A3A1720003C02F2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "emptyExample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E4B69B600A3A1757003C02F2 /* Debug */, + E4B69B610A3A1757003C02F2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = E4B69B4C0A3A1720003C02F2 /* Project object */; +} diff --git a/exampleSpanningImage/openFrameworks-Info.plist b/exampleSpanningImage/openFrameworks-Info.plist new file mode 100644 index 0000000..e5db555 --- /dev/null +++ b/exampleSpanningImage/openFrameworks-Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + com.yourcompany.openFrameworks + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + + diff --git a/exampleSpanningImage/src/main.cpp b/exampleSpanningImage/src/main.cpp new file mode 100644 index 0000000..570a1d5 --- /dev/null +++ b/exampleSpanningImage/src/main.cpp @@ -0,0 +1,15 @@ +#include "ofMain.h" +#include "testApp.h" +#include "ofxFensterManager.h" +#include "ofAppGlutWindow.h" + +//======================================================================== +int main( ){ + ofSetupOpenGL(ofxFensterManager::get(), 400, 400, OF_WINDOW); // <-------- setup the GL context + + // this kicks off the running of my app + // can be OF_WINDOW or OF_FULLSCREEN + // pass in width and height too: + ofRunFensterApp(new testApp()); +} + diff --git a/exampleSpanningImage/src/testApp.cpp b/exampleSpanningImage/src/testApp.cpp new file mode 100644 index 0000000..5c9a4dd --- /dev/null +++ b/exampleSpanningImage/src/testApp.cpp @@ -0,0 +1,93 @@ +#include "testApp.h" + +//-------------------------------------------------------------- +void testApp::setup() +{ + ofSetWindowShape(100, 100); + bgImage.loadImage("someLargeImage.jpg"); + for(int i=0;i<60;i++){ + ofxFenster* win=ofxFensterManager::get()->createFenster(ofRandom(ofGetScreenWidth()), ofRandom(ofGetScreenHeight()), ofRandom(50, 250), ofRandom(50, 250), OF_WINDOW); + win->addListener(this); //this line works because testApp does not extend ofBaseApp, but ofxFensterListener + win->setWindowTitle(ofToString(i)); + win->setBorder(false); + } +} + + +//-------------------------------------------------------------- +void testApp::update() +{ + +} + +//-------------------------------------------------------------- +void testApp::draw() +{ + ofTranslate(-ofGetWindowPositionX(), -ofGetWindowPositionY()); + bgImage.draw(0, 0); +} + +//-------------------------------------------------------------- +void testApp::keyPressed(int key, ofxFenster* win) +{ + +} + +//-------------------------------------------------------------- +void testApp::keyReleased(int key, ofxFenster* win) +{ + +} + +//this only works if testApp is extending ofxFensterListener and not ofBaseApp +void testApp::mouseMoved(int x, int y, ofxFenster* win) +{ + +} + +//-------------------------------------------------------------- +void testApp::mouseMoved(int x, int y) +{ + +} + +//-------------------------------------------------------------- +void testApp::mouseDragged(int x, int y, int button) +{ + +} + +//-------------------------------------------------------------- +void testApp::mousePressed(int x, int y, int button) +{ + +} + +//-------------------------------------------------------------- +void testApp::mouseReleased(int x, int y, int button) +{ + +} + +//-------------------------------------------------------------- +void testApp::windowResized(int w, int h) +{ + +} + +//-------------------------------------------------------------- +void testApp::gotMessage(ofMessage msg) +{ + +} + +//-------------------------------------------------------------- +void testApp::dragEvent(ofDragInfo dragInfo) +{ + +} + +void testApp::mouseMovedEvent(ofMouseEventArgs &args) +{ + //cout << "MOUSE WAS MOVED" << endl; +} diff --git a/exampleSpanningImage/src/testApp.h b/exampleSpanningImage/src/testApp.h new file mode 100644 index 0000000..d2fe1d5 --- /dev/null +++ b/exampleSpanningImage/src/testApp.h @@ -0,0 +1,26 @@ +#pragma once + +#include "ofMain.h" +#include "ofxFensterManager.h" + +class testApp : public ofxFensterListener { + +public: + void setup(); + void update(); + void draw(); + + void keyPressed (int key, ofxFenster* win); + void keyReleased(int key, ofxFenster* win); + void mouseMoved(int x, int y ); + void mouseMoved(int x, int y, ofxFenster* win); + void mouseDragged(int x, int y, int button); + void mousePressed(int x, int y, int button); + void mouseReleased(int x, int y, int button); + void windowResized(int w, int h); + void dragEvent(ofDragInfo dragInfo); + void gotMessage(ofMessage msg); + void mouseMovedEvent(ofMouseEventArgs &args); + + ofImage bgImage; +}; diff --git a/src/ofxFensterManager.cpp b/src/ofxFensterManager.cpp index aed921c..143544b 100644 --- a/src/ofxFensterManager.cpp +++ b/src/ofxFensterManager.cpp @@ -308,7 +308,11 @@ bool ofxFensterManager::processEvent(GHOST_IEvent* event) { GHOST_Rect rect; window->getWindowBounds(rect); + //cout << rect.m_t << endl; + //GHOST_TInt32 x,y; + //window->screenToClient(rect.m_l, rect.m_t, x, y); win->windowMoved(rect.m_l, rect.m_t); + break; } case GHOST_kEventWindowUpdate: @@ -471,11 +475,12 @@ void ofxFensterManager::setWindowPosition(int x, int y) void ofxFensterManager::setWindowShape(int w, int h) { + activeWindow->setWindowShape(w, h); } void ofxFensterManager::setWindowTitle(string title) { - + activeWindow->setWindowTitle(title); } void ofxFensterManager::showCursor()