Compare commits
No commits in common. "master" and "snations" have entirely different histories.
819 changed files with 179322 additions and 608240 deletions
15
Makefile
15
Makefile
|
|
@ -24,10 +24,7 @@ include Makefile.zlib
|
|||
include Makefile.libpng
|
||||
include Makefile.snappy
|
||||
include Makefile.apitrace
|
||||
include Makefile.glsloptlib
|
||||
include Makefile.pcrelib
|
||||
include Makefile.regal
|
||||
include Makefile.regalw
|
||||
include Makefile.glu
|
||||
include Makefile.glut
|
||||
include Makefile.glew
|
||||
|
|
@ -37,19 +34,12 @@ include Makefile.glewinfo
|
|||
|
||||
include Makefile.dreamtorus
|
||||
include Makefile.dreamtorus_static
|
||||
include Makefile.alphatorus
|
||||
include Makefile.tiger
|
||||
include Makefile.nacl
|
||||
|
||||
# Testing
|
||||
|
||||
include Makefile.gtest
|
||||
include Makefile.regaltest
|
||||
|
||||
# Misc
|
||||
|
||||
# include Makefile.expat
|
||||
|
||||
all::
|
||||
|
||||
clean::
|
||||
|
|
@ -59,9 +49,4 @@ clobber:
|
|||
$(RM) -r lib
|
||||
$(RM) -r bin
|
||||
|
||||
# Disable the built-in yacc & lex rules
|
||||
|
||||
%.c: %.y
|
||||
%.c: %.l
|
||||
|
||||
.PHONY: all clean clobber
|
||||
|
|
|
|||
|
|
@ -1,68 +0,0 @@
|
|||
ifndef MAKEFILE_ALPHATORUS_INCLUDED
|
||||
MAKEFILE_ALPHATORUS_INCLUDED := 1
|
||||
|
||||
.PHONY: alphatorus.bin alphatorus.clean
|
||||
|
||||
include build/common.inc
|
||||
|
||||
# Not supported for NaCL or emscripten - Revisit
|
||||
|
||||
ifeq ($(filter nacl% emscripten%,$(SYSTEM)),)
|
||||
|
||||
#
|
||||
# alphatorus
|
||||
#
|
||||
|
||||
include Makefile.regal
|
||||
include Makefile.glut
|
||||
|
||||
ifndef REGAL.STATIC
|
||||
$(error alphatorus needs Regal.)
|
||||
endif
|
||||
|
||||
all:: alphatorus.bin
|
||||
|
||||
clean:: alphatorus.clean
|
||||
|
||||
alphatorus.bin: bin/$(SYSTEM)/alphatorus
|
||||
|
||||
alphatorus.clean:
|
||||
$(RM) -r tmp/$(SYSTEM)/alphatorus/static
|
||||
$(RM) -r bin/$(SYSTEM)/alphatorus
|
||||
|
||||
ALPHATORUS.SRCS += examples/alphatorus/src/render.cpp
|
||||
ALPHATORUS.SRCS += examples/alphatorus/glut/code/main.cpp
|
||||
ALPHATORUS.SRCS.NAMES := $(notdir $(ALPHATORUS.SRCS))
|
||||
ALPHATORUS.OBJS := $(addprefix tmp/$(SYSTEM)/alphatorus/static/,$(ALPHATORUS.SRCS.NAMES))
|
||||
ALPHATORUS.OBJS := $(ALPHATORUS.OBJS:.cpp=.o)
|
||||
ALPHATORUS.DEPS := $(ALPHATORUS.DEPS:.o=.d)
|
||||
ALPHATORUS.CFLAGS := -Iinclude -Iexamples/alphatorus/src
|
||||
ALPHATORUS.LIBS += -Llib/$(SYSTEM) $(LDFLAGS.GLUT) $(LDFLAGS.GLU) $(LDFLAGS.X11)
|
||||
ALPHATORUS.LIBS += -lm -pthread
|
||||
|
||||
-include $(ALPHATORUS.DEPS)
|
||||
|
||||
tmp/$(SYSTEM)/alphatorus/static/%.o: examples/alphatorus/src/%.cpp
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(ALPHATORUS.CFLAGS) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/alphatorus/static/%.o: examples/alphatorus/glut/code/%.cpp
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(ALPHATORUS.CFLAGS) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
ALPHATORUS.DEPEND :=
|
||||
ALPHATORUS.DEPEND += lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
|
||||
ifdef GLUT.SHARED
|
||||
bin/$(SYSTEM)/alphatorus: lib/$(SYSTEM)/$(GLUT.SHARED) lib/$(SYSTEM)/$(GLU.SHARED)
|
||||
endif
|
||||
|
||||
bin/$(SYSTEM)/alphatorus: $(ALPHATORUS.OBJS) lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(ALPHATORUS.OBJS) lib/$(SYSTEM)/$(REGAL.SHARED) $(ALPHATORUS.LIBS) $(REGAL.LDFLAGS)
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
@ -50,8 +50,8 @@ tmp/$(SYSTEM)/dreamtorus/static/%.o: examples/dreamtorus/glut/code/%.cpp
|
|||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(DREAMTORUS.CFLAGS) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
DREAMTORUS.DEPEND :=
|
||||
DREAMTORUS.DEPEND += lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
DREAMTORUS.DEPEND :=
|
||||
DREAMTORUS.DEPEND += lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
|
||||
ifdef GLUT.SHARED
|
||||
bin/$(SYSTEM)/dreamtorus: lib/$(SYSTEM)/$(GLUT.SHARED) lib/$(SYSTEM)/$(GLU.SHARED)
|
||||
|
|
|
|||
|
|
@ -46,17 +46,10 @@ DREAMTORUS_STATIC.OBJS := $(DREAMTORUS_STATIC.OBJS:.cpp=.o)
|
|||
DREAMTORUS_STATIC.DEPS := $(DREAMTORUS_STATIC.DEPS:.o=.d)
|
||||
DREAMTORUS_STATIC.CFLAGS := -Iinclude -Iexamples/dreamtorus/src
|
||||
|
||||
ifneq ($(filter emscripten%,$(SYSTEM)),)
|
||||
DREAMTORUS_STATIC.CFLAGS += -s LEGACY_GL_EMULATION=1
|
||||
DREAMTORUS_STATIC.CFLAGS += -s OUTLINING_LIMIT=50000
|
||||
DREAMTORUS_STATIC.CFLAGS += --js-opts 0
|
||||
DREAMTORUS_STATIC.LIBS += --js-opts 0
|
||||
endif
|
||||
|
||||
DREAMTORUS_STATIC.LIBS += -Llib/$(SYSTEM)
|
||||
|
||||
ifndef GLUT.STATIC
|
||||
DREAMTORUS_STATIC.LIBS += $(LDFLAGS.GLUT) $(LDFLAGS.GLU)
|
||||
DREAMTORUS_STATIC.LIBS += $(LDFLAGS.GLUT) $(LDFLAGS.GLU)
|
||||
endif
|
||||
|
||||
DREAMTORUS_STATIC.LIBS += $(LDFLAGS.X11)
|
||||
|
|
@ -73,8 +66,8 @@ tmp/$(SYSTEM)/dreamtorus_static/static/%.o: examples/dreamtorus/glut/code/%.cpp
|
|||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(DREAMTORUS_STATIC.CFLAGS) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
DREAMTORUS_STATIC.DEPEND :=
|
||||
DREAMTORUS_STATIC.DEPEND += lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(PCRE.STATIC)
|
||||
DREAMTORUS_STATIC.DEPEND :=
|
||||
DREAMTORUS_STATIC.DEPEND += lib/$(SYSTEM)/$(REGAL.STATIC)
|
||||
|
||||
ifdef GLUT.STATIC
|
||||
DREAMTORUS_STATIC.DEPEND += lib/$(SYSTEM)/$(GLUT.STATIC) lib/$(SYSTEM)/$(GLU.STATIC)
|
||||
|
|
@ -83,9 +76,9 @@ endif
|
|||
bin/$(SYSTEM)/$(DREAMTORUS_STATIC.EXE): $(DREAMTORUS_STATIC.OBJS) $(DREAMTORUS_STATIC.DEPEND)
|
||||
@mkdir -p $(dir $@)
|
||||
ifdef APITRACE.STATIC
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(DREAMTORUS_STATIC.OBJS) $(LDFLAGS.STARTGROUP) lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(APITRACE.STATIC) $(LDFLAGS.ENDGROUP) $(REGAL.SHARED.DEPEND) $(DREAMTORUS_STATIC.DEPEND) $(REGAL.LIBS) $(REGAL.LDFLAGS) $(DREAMTORUS_STATIC.LIBS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(DREAMTORUS_STATIC.OBJS) $(LDFLAGS.STARTGROUP) lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(APITRACE.STATIC) $(LDFLAGS.ENDGROUP) $(REGAL.SHARED.DEPEND) $(DREAMTORUS_STATIC.DEPEND) $(REGAL.LIBS) $(REGAL.LDFLAGS) $(DREAMTORUS_STATIC.LIBS)
|
||||
else
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(DREAMTORUS_STATIC.OBJS) lib/$(SYSTEM)/$(REGAL.STATIC) $(REGAL.SHARED.DEPEND) $(DREAMTORUS_STATIC.DEPEND) $(REGAL.LDFLAGS) $(DREAMTORUS_STATIC.LIBS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(DREAMTORUS_STATIC.OBJS) lib/$(SYSTEM)/$(REGAL.STATIC) $(REGAL.SHARED.DEPEND) $(DREAMTORUS_STATIC.DEPEND) $(REGAL.LDFLAGS) $(DREAMTORUS_STATIC.LIBS)
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
|
|
|
|||
|
|
@ -1,55 +0,0 @@
|
|||
ifndef MAKEFILE_EXPAT_INCLUDED
|
||||
MAKEFILE_EXPAT_INCLUDED := 1
|
||||
|
||||
.PHONY: expat.lib expat.clean
|
||||
|
||||
include build/common.inc
|
||||
|
||||
include build/expat.inc
|
||||
|
||||
#
|
||||
# expat
|
||||
#
|
||||
|
||||
ifneq ($(EXPAT.STATIC),)
|
||||
|
||||
all:: expat.lib
|
||||
|
||||
clean:: expat.clean
|
||||
|
||||
EXPAT.SRCS := $(EXPAT.C)
|
||||
EXPAT.SRCS.NAMES := $(notdir $(EXPAT.SRCS))
|
||||
EXPAT.OBJS := $(addprefix tmp/$(SYSTEM)/expat/static/,$(EXPAT.SRCS.NAMES))
|
||||
EXPAT.OBJS := $(EXPAT.OBJS:.c=.o)
|
||||
EXPAT.DEPS := $(EXPAT.DEPS:.o=.d)
|
||||
|
||||
-include $(EXPAT.DEPS)
|
||||
|
||||
ifeq ($(MODE),release)
|
||||
EXPAT.CFLAGS += -DNDEBUG
|
||||
endif
|
||||
|
||||
EXPAT.CFLAGS += -DHAVE_MEMMOVE
|
||||
|
||||
expat.lib: lib/$(SYSTEM)/$(EXPAT.STATIC)
|
||||
|
||||
expat.clean:
|
||||
$(RM) -r tmp/$(SYSTEM)/expat/static
|
||||
$(RM) -r lib/$(SYSTEM)/$(EXPAT.STATIC)
|
||||
|
||||
tmp/$(SYSTEM)/expat/static/%.o: src/expat/src/%.c
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(EXPAT.CFLAGS) $(CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
lib/$(SYSTEM)/$(EXPAT.STATIC): $(EXPAT.OBJS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_AR)$(CCACHE) $(AR) cr $@ $(EXPAT.OBJS)
|
||||
ifneq ($(RANLIB),)
|
||||
$(LOG_RANLIB)$(RANLIB) $@
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
#
|
||||
# Makefile for the GLSL Optimizer component of the Regal runtime.
|
||||
# The GLSL Optimizer is always build into Regal, but you can build
|
||||
# just this target static library with:
|
||||
# make -f Makefile.glslopt
|
||||
#
|
||||
|
||||
ifndef MAKEFILE_GLSLOPT_INCLUDED
|
||||
MAKEFILE_GLSLOPT_INCLUDED := 1
|
||||
|
||||
.PHONY: glslopt.lib glslopt.clean
|
||||
|
||||
include build/common.inc
|
||||
include build/glslopt.inc
|
||||
|
||||
ifdef GLSLOPT.STATIC
|
||||
|
||||
all:: glslopt.lib
|
||||
|
||||
clean:: glslopt.clean
|
||||
|
||||
GLSLOPT.SRCS := $(GLSLOPT.CXX)
|
||||
GLSLOPT.SRCS := $(filter %.c,$(GLSLOPT.SRCS)) $(filter %.cc,$(GLSLOPT.SRCS)) $(filter %.cpp,$(GLSLOPT.SRCS))
|
||||
GLSLOPT.SRCS.NAMES := $(notdir $(GLSLOPT.SRCS))
|
||||
GLSLOPT.OBJS := $(addprefix tmp/$(SYSTEM)/glslopt/static/,$(GLSLOPT.SRCS.NAMES))
|
||||
GLSLOPT.OBJS := $(GLSLOPT.OBJS:.c=.o) $(GLSLOPT.OBJS:.cpp=.o)
|
||||
GLSLOPT.OBJS := $(filter %.o,$(GLSLOPT.OBJS))
|
||||
GLSLOPT.DEPS := $(GLSLOPT.OBJS:.o=.d)
|
||||
GLSLOPT.CFLAGS := $(GLSLOPT.INCLUDE)
|
||||
# quiet build for this thirdparty code for now
|
||||
GLSLOPT.CFLAGS += -Wno-sign-compare
|
||||
|
||||
ifeq ($(MODE),release)
|
||||
GLSLOPT.CFLAGS += -DNDEBUG
|
||||
GLSLOPT.CFLAGS += -DREGAL_NO_ASSERT=1
|
||||
endif
|
||||
|
||||
-include $(GLSLOPT.DEPS) #seth: do I need ot set this?
|
||||
|
||||
glslopt.lib: lib/$(SYSTEM)/$(GLSLOPT.STATIC)
|
||||
|
||||
glslopt.clean:
|
||||
$(RM) -r tmp/$(SYSTEM)/glslopt/static
|
||||
$(RM) -r lib/$(SYSTEM)/$(GLSLOPT.STATIC)
|
||||
|
||||
tmp/$(SYSTEM)/glslopt/static/%.o: src/glsl/src/mesa/main/%.c
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(CFLAGS) $(GLSLOPT.CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/glslopt/static/%.o: src/glsl/src/mesa/program/%.c
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(CFLAGS) $(GLSLOPT.CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/glslopt/static/%.o: src/glsl/src/glsl/glcpp/%.c
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(CFLAGS) $(GLSLOPT.CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/glslopt/static/%.o: src/glsl/src/glsl/%.c
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(CFLAGS) $(GLSLOPT.CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/glslopt/static/%.o: src/glsl/src/glsl/%.cpp
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(CFLAGS) $(GLSLOPT.CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
lib/$(SYSTEM)/$(GLSLOPT.STATIC): $(GLSLOPT.OBJS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_AR)$(CCACHE) $(AR) cr $@ $(GLSLOPT.OBJS)
|
||||
ifneq ($(RANLIB),)
|
||||
$(LOG_RANLIB)$(RANLIB) $@
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
@ -36,7 +36,6 @@ GLU.OBJS := $(GLU.OBJS:.c=.o) $(GLU.OBJS:.cc=.o)
|
|||
GLU.OBJS := $(filter %.o,$(GLU.OBJS))
|
||||
GLU.DEPS := $(GLU.OBJS:.o=.d)
|
||||
GLU.LIBS := -Llib/$(SYSTEM) -lRegal
|
||||
GLU.LIBS += -lstdc++
|
||||
GLU.LIBS += -pthread -lm
|
||||
|
||||
-include $(GLU.DEPS)
|
||||
|
|
@ -81,7 +80,7 @@ tmp/$(SYSTEM)/glu/shared/%.o: src/glu/libnurbs/nurbtess/%.cc
|
|||
ifdef GLU.SHARED
|
||||
lib/$(SYSTEM)/$(GLU.SHARED): $(GLU.OBJS) lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(LDFLAGS.DYNAMIC) $(REGAL.LDFLAGS) -o $@ $(GLU.OBJS) $(GLU.LIBS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(LDFLAGS.DYNAMIC) $(GLU.LIBS) $(REGAL.LDFLAGS) -o $@ $(GLU.OBJS)
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ endif
|
|||
ifdef GLUT.STATIC
|
||||
|
||||
include Makefile.regal
|
||||
include Makefile.glu
|
||||
|
||||
ifndef REGAL.STATIC
|
||||
$(error RegalGLUT needs Regal.)
|
||||
|
|
|
|||
|
|
@ -46,6 +46,9 @@ lib/$(SYSTEM)/$(GTEST.STATIC): $(GTEST.OBJS)
|
|||
ifneq ($(RANLIB),)
|
||||
$(LOG_RANLIB)$(RANLIB) $@
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ MAKEFILE_NACL_INCLUDED := 1
|
|||
#
|
||||
|
||||
ifneq ($(filter nacl%,$(SYSTEM)),)
|
||||
ifeq ($(filter nacl-pnacl,$(SYSTEM)),)
|
||||
|
||||
.PHONY: nacl.bin nacl.clean
|
||||
|
||||
|
|
@ -37,9 +36,8 @@ NACL.SRCS.NAMES := $(notdir $(NACL.SRCS))
|
|||
NACL.OBJS := $(addprefix tmp/$(SYSTEM)/nacl/static/,$(NACL.SRCS.NAMES))
|
||||
NACL.OBJS := $(NACL.OBJS:.c=.o)
|
||||
NACL.CFLAGS := -Iinclude
|
||||
NACL.CFLAGS += -DREGAL_NAMESPACE=1
|
||||
NACL.LIBS += -Llib/$(SYSTEM) -lRegallib -lglslopt -lpnglib -lzlib
|
||||
NACL.LIBS += -lm -pthread -lppapi -lppapi_gles2 -lstdc++
|
||||
NACL.LIBS += -Llib/$(SYSTEM) -lRegal
|
||||
NACL.LIBS += -lpng -lz -lm -pthread -lppapi -lppapi_gles2 -lstdc++
|
||||
|
||||
-include $(NACL.DEPS)
|
||||
|
||||
|
|
@ -47,7 +45,7 @@ tmp/$(SYSTEM)/nacl/static/%.o: examples/nacl/%.c
|
|||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CC) $(CFLAGS) -std=gnu99 $(NACL.CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
bin/$(SYSTEM)/nacl$(BIN_EXTENSION): lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(GLSLOPT.STATIC) $(NACL.OBJS)
|
||||
bin/$(SYSTEM)/nacl$(BIN_EXTENSION): lib/$(SYSTEM)/$(REGAL.STATIC) $(NACL.OBJS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_LD)$(LD) $(LDFLAGS.EXTRA) -o $@ $(NACL.OBJS) $(NACL.LIBS)
|
||||
ifneq ($(STRIP),)
|
||||
|
|
@ -59,4 +57,3 @@ examples/nacl/nacl.nmf: bin/$(SYSTEM)/nacl$(BIN_EXTENSION)
|
|||
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -1,61 +0,0 @@
|
|||
#
|
||||
# Makefile for the GLSL Optimizer component of the Regal runtime.
|
||||
# The GLSL Optimizer is always build into Regal, but you can build
|
||||
# just this target static library with:
|
||||
# make -f Makefile.pcrelib
|
||||
#
|
||||
|
||||
ifndef MAKEFILE_PCRE_INCLUDED
|
||||
MAKEFILE_PCRE_INCLUDED := 1
|
||||
|
||||
.PHONY: pcre.lib pcre.clean
|
||||
|
||||
include build/common.inc
|
||||
|
||||
include build/pcre.inc
|
||||
|
||||
ifdef PCRE.STATIC
|
||||
|
||||
all:: pcre.lib
|
||||
|
||||
clean:: pcre.clean
|
||||
|
||||
PCRE.SRCS := $(PCRE.C)
|
||||
PCRE.SRCS := $(filter %.c,$(PCRE.SRCS)) $(filter %.cc,$(PCRE.SRCS)) $(filter %.cpp,$(PCRE.SRCS))
|
||||
PCRE.SRCS.NAMES := $(notdir $(PCRE.SRCS))
|
||||
PCRE.OBJS := $(addprefix tmp/$(SYSTEM)/pcre/static/,$(PCRE.SRCS.NAMES))
|
||||
PCRE.OBJS := $(PCRE.OBJS:.c=.o) $(PCRE.OBJS:.cpp=.o)
|
||||
PCRE.OBJS := $(filter %.o,$(PCRE.OBJS))
|
||||
PCRE.DEPS := $(PCRE.OBJS:.o=.d)
|
||||
PCRE.CFLAGS := $(PCRE.INCLUDE)
|
||||
PCRE.CFLAGS += -DHAVE_CONFIG_H
|
||||
|
||||
ifeq ($(MODE),release)
|
||||
PCRE.CFLAGS += -DNDEBUG
|
||||
PCRE.CFLAGS += -DREGAL_NO_ASSERT=1
|
||||
endif
|
||||
|
||||
-include $(PCRE.DEPS)
|
||||
|
||||
pcre.lib: lib/$(SYSTEM)/$(PCRE.STATIC)
|
||||
|
||||
pcre.clean:
|
||||
$(RM) -r tmp/$(SYSTEM)/pcre/static
|
||||
$(RM) -r lib/$(SYSTEM)/$(PCRE.STATIC)
|
||||
|
||||
tmp/$(SYSTEM)/pcre/static/%.o: src/pcre/%.c
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(CFLAGS) $(PCRE.CFLAGS) $(PICFLAG) -o $@ -c $<
|
||||
|
||||
lib/$(SYSTEM)/$(PCRE.STATIC): $(PCRE.OBJS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_AR)$(CCACHE) $(AR) cr $@ $(PCRE.OBJS)
|
||||
ifneq ($(RANLIB),)
|
||||
$(LOG_RANLIB)$(RANLIB) $@
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
endif
|
||||
endif
|
||||
119
Makefile.regal
119
Makefile.regal
|
|
@ -28,22 +28,12 @@ ifdef REGAL.STATIC
|
|||
|
||||
include Makefile.apitrace
|
||||
include Makefile.libpng
|
||||
include Makefile.glsloptlib
|
||||
include Makefile.pcrelib
|
||||
|
||||
all:: regal.lib
|
||||
|
||||
clean:: regal.clean
|
||||
|
||||
framework:: regal.framework
|
||||
|
||||
REGAL.LDFLAGS :=
|
||||
|
||||
ifeq ($(filter nacl%,$(SYSTEM)),)
|
||||
REGAL.LDFLAGS += -lstdc++
|
||||
endif
|
||||
|
||||
REGAL.LDFLAGS += -pthread -lm
|
||||
REGAL.LDFLAGS := -lstdc++ -pthread -lm
|
||||
REGAL.LIBS :=
|
||||
|
||||
ifeq ($(filter nacl%,$(SYSTEM)),)
|
||||
|
|
@ -52,10 +42,10 @@ endif
|
|||
|
||||
REGAL.SRCS := $(REGAL.CXX)
|
||||
|
||||
# Disable civetweb and Regal HTTP for NaCl build
|
||||
# Disable mongoose and Regal HTTP for NaCl build
|
||||
|
||||
ifeq ($(filter nacl% emscripten%,$(SYSTEM)),)
|
||||
REGAL.SRCS += src/civetweb/civetweb.c
|
||||
REGAL.SRCS += src/mongoose/mongoose.c
|
||||
endif
|
||||
|
||||
ifeq ($(filter -DREGAL_NO_MD5%,$(CFLAGS)),)
|
||||
|
|
@ -75,8 +65,6 @@ REGAL.SRCS += src/jsonsl/jsonsl.c
|
|||
#
|
||||
|
||||
ifeq ($(MODE),debug)
|
||||
#REGAL.CFLAGS += -DREGAL_ASSERT_VERBOSE=1
|
||||
#REGAL.CFLAGS += -DREGAL_NO_ASSERT=1
|
||||
endif
|
||||
|
||||
#
|
||||
|
|
@ -90,7 +78,7 @@ REGAL.CFLAGS += -DREGAL_DECL_EXPORT=1
|
|||
REGAL.CFLAGS += -DREGAL_LOG_ALL=0
|
||||
REGAL.CFLAGS += -DREGAL_LOG_ONCE=0
|
||||
REGAL.CFLAGS += -DREGAL_LOG_JSON=0
|
||||
REGAL.CFLAGS += -DREGAL_HTTP=0
|
||||
REGAL.CFLAGS += -DREGAL_NO_HTTP=1
|
||||
REGAL.CFLAGS += -DREGAL_NO_ASSERT=1
|
||||
REGAL.CFLAGS += -DREGAL_NO_PNG=1
|
||||
REGAL.CFLAGS += -DREGAL_STATISTICS=0
|
||||
|
|
@ -100,8 +88,8 @@ REGAL_LOG ?= 0
|
|||
REGAL_ERROR ?= 0
|
||||
REGAL_CACHE ?= 0
|
||||
REGAL_DEBUG ?= 0
|
||||
#REGAL_EMULATION ?= 1 # 0 for "loader only"
|
||||
#REGAL.CFLAGS += -DREGAL_NO_TLS=0 # 1 for single threaded
|
||||
REGAL_EMULATION ?= 1 # 0 for "loader only"
|
||||
REGAL.CFLAGS += -DREGAL_NO_TLS=0 # 1 for single threaded
|
||||
endif
|
||||
|
||||
#
|
||||
|
|
@ -111,40 +99,16 @@ endif
|
|||
ifeq ($(MODE),custom)
|
||||
endif
|
||||
|
||||
# NaCL options
|
||||
|
||||
ifneq ($(filter nacl%,$(SYSTEM)),)
|
||||
REGAL.CFLAGS += -DREGAL_SYS_ES2=1
|
||||
REGAL.CFLAGS += -DREGAL_HTTP=0
|
||||
REGAL.CFLAGS += -DREGAL_STATISTICS=0
|
||||
REGAL.CFLAGS += -Wno-constant-logical-operand
|
||||
REGAL.CFLAGS += -DREGAL_PLUGIN=0
|
||||
REGAL.CFLAGS += -DREGAL_TRACE=0
|
||||
REGAL.CFLAGS += -DREGAL_NAMESPACE=1 -DREGAL_STATIC_ES2
|
||||
REGAL_LOG = 0
|
||||
REGAL_NO_TLS = 1
|
||||
|
||||
# Enabling this requires the library to be built with it, as well as all code
|
||||
# that uses it. Defining this means that Regal will link statically to GL
|
||||
# and EGL, and code will have to #include <GL/Regal.h> before any GL
|
||||
# includes to pull in a bunch of #defines (e.g. #define glGetError rglGetError)
|
||||
#LIB.CFLAGS += -DREGAL_SYS_EMSCRIPTEN_STATIC=1
|
||||
|
||||
endif
|
||||
|
||||
#
|
||||
# Emscripten-specific
|
||||
#
|
||||
|
||||
ifneq ($(filter emscripten%,$(SYSTEM)),)
|
||||
REGAL.CFLAGS += -DREGAL_SYS_EMSCRIPTEN=1 -DREGAL_SYS_EGL=1 -DREGAL_SYS_ES2=1
|
||||
REGAL.CFLAGS += -DREGAL_HTTP=0
|
||||
REGAL.CFLAGS += -DREGAL_NO_HTTP=1
|
||||
REGAL.CFLAGS += -Wno-constant-logical-operand
|
||||
REGAL.CFLAGS += -DREGAL_PLUGIN=0
|
||||
REGAL.CFLAGS += -DREGAL_TRACE=0
|
||||
REGAL.CFLAGS += -s LEGACY_GL_EMULATION=1
|
||||
REGAL.CFLAGS += -s OUTLINING_LIMIT=50000
|
||||
REGAL.CFLAGS += --js-opts 0
|
||||
REGAL_LOG := 0
|
||||
REGAL_ERROR := 0
|
||||
REGAL_CACHE := 0
|
||||
|
|
@ -174,14 +138,6 @@ ifneq ($(REGAL_EMULATION),)
|
|||
REGAL.CFLAGS += -DREGAL_EMULATION=$(REGAL_EMULATION)
|
||||
endif
|
||||
|
||||
ifneq ($(REGAL_WRANGLER),)
|
||||
REGAL.CFLAGS += -DREGAL_WRANGLER=$(REGAL_WRANGLER)
|
||||
endif
|
||||
|
||||
ifneq ($(REGAL_NO_TLS),)
|
||||
REGAL.CFLAGS += -DREGAL_NO_TLS=$(REGAL_NO_TLS)
|
||||
endif
|
||||
|
||||
REGAL.CFLAGS += -fvisibility=hidden
|
||||
|
||||
REGAL.SRCS.NAMES := $(notdir $(REGAL.SRCS))
|
||||
|
|
@ -205,24 +161,20 @@ REGAL.SDEPS := $(LIBS.SOBJS:.o=.d)
|
|||
REGAL.LIBS += $(LDFLAGS.X11)
|
||||
|
||||
ifneq ($(filter linux%,$(SYSTEM)),)
|
||||
REGAL.SONAME := lib$(NAME).so.$(SO_MAJOR)
|
||||
REGAL.DEVLNK := lib$(NAME).so
|
||||
REGAL.SHARED := lib$(NAME).so.$(SO_VERSION)
|
||||
REGAL.LDFLAGS.SO := $(LDFLAGS.SO) $(LDFLAGS.DYNAMIC) -Wl,-soname=$(REGAL.SONAME)
|
||||
REGAL.SONAME := lib$(NAME).so.$(SO_MAJOR)
|
||||
REGAL.DEVLNK := lib$(NAME).so
|
||||
REGAL.SHARED := lib$(NAME).so.$(SO_VERSION)
|
||||
LDFLAGS.SO := $(LDFLAGS.DYNAMIC) -Wl,-soname=$(REGAL.SONAME)
|
||||
endif
|
||||
|
||||
ifneq ($(filter darwin%,$(SYSTEM)),)
|
||||
OPENGL_NAME := OpenGL
|
||||
OPENGL_FRAMEWORK := $(OPENGL_NAME).framework
|
||||
OPENGL := $(OPENGL_FRAMEWORK)/Versions/A/$(OPENGL_NAME)
|
||||
REGAL.SONAME := lib$(NAME).$(SO_MAJOR).dylib
|
||||
REGAL.DEVLNK := lib$(NAME).dylib
|
||||
REGAL.SHARED := lib$(NAME).$(SO_VERSION).dylib
|
||||
REGAL.FRAMEWORK := $(NAME)
|
||||
REGAL.LDFLAGS.SO := $(LDFLAGS.SO) $(LDFLAGS.DYNAMIC) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR)
|
||||
#LDFLAGS.SO += -install_name $(REGAL_DEST)/lib/$(REGAL.SHARED)
|
||||
REGAL.LDFLAGS += -Wl,-reexport-lGLU -L/System/Library/Frameworks/$(OPENGL_FRAMEWORK)/Versions/A/Libraries
|
||||
INFO_PLIST := build/mac/Info.plist
|
||||
REGAL.SONAME := lib$(NAME).$(SO_MAJOR).dylib
|
||||
REGAL.DEVLNK := lib$(NAME).dylib
|
||||
REGAL.SHARED := lib$(NAME).$(SO_VERSION).dylib
|
||||
REGAL.FRAMEWORK := $(NAME)
|
||||
LDFLAGS.SO := $(LDFLAGS.DYNAMIC) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR)
|
||||
#LDFLAGS.SO += -install_name $(REGAL_DEST)/lib/$(REGAL.SHARED)
|
||||
REGAL.LDFLAGS += -Wl,-reexport-lGLU -L/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries
|
||||
endif
|
||||
|
||||
ifdef REGAL.STATIC
|
||||
|
|
@ -243,23 +195,6 @@ ifdef REGAL.SHARED
|
|||
$(RM) -r bin/$(SYSTEM)/$(REGAL.SHARED)
|
||||
endif
|
||||
|
||||
ifneq ($(filter darwin%,$(SYSTEM)),)
|
||||
regal.framework:
|
||||
$(RM) -r $(OPENGL_FRAMEWORK)
|
||||
$(MKDIR) $(OPENGL_FRAMEWORK)/Versions/A/Resources
|
||||
$(MKDIR) $(OPENGL_FRAMEWORK)/Versions/A/Libraries
|
||||
$(LN) A $(OPENGL_FRAMEWORK)/Versions/Current
|
||||
$(LN) Versions/Current/Resources $(OPENGL_FRAMEWORK)/Resources
|
||||
$(LN) Versions/Current/Headers $(OPENGL_FRAMEWORK)/Headers
|
||||
$(LN) Versions/Current/Libraries $(OPENGL_FRAMEWORK)/Libraries
|
||||
$(LN) Versions/Current/$(OPENGL_NAME) $(OPENGL_FRAMEWORK)/$(OPENGL_NAME)
|
||||
$(CP) $(INFO_PLIST) $(OPENGL_FRAMEWORK)/Resources
|
||||
ifdef REGAL.SHARED
|
||||
$(CP) lib/$(SYSTEM)/$(REGAL.SHARED) $(OPENGL_FRAMEWORK)/Versions/A/Libraries/$(OPENGL_NAME)
|
||||
endif
|
||||
$(LN) Libraries/$(OPENGL_NAME) $(OPENGL_FRAMEWORK)/Versions/A/$(OPENGL_NAME)
|
||||
endif
|
||||
|
||||
ifdef APITRACE.STATIC
|
||||
lib/$(SYSTEM)/$(REGAL.STATIC): lib/$(SYSTEM)/$(APITRACE.STATIC) lib/$(SYSTEM)/$(SNAPPY.STATIC)
|
||||
endif
|
||||
|
|
@ -270,7 +205,7 @@ regal.lib: lib/$(SYSTEM)/$(REGAL.SHARED)
|
|||
endif
|
||||
endif
|
||||
|
||||
lib/$(SYSTEM)/$(REGAL.STATIC): lib/$(SYSTEM)/$(GLSLOPT.STATIC) lib/$(SYSTEM)/$(PCRE.STATIC) lib/$(SYSTEM)/$(LIBPNG.STATIC) lib/$(SYSTEM)/$(ZLIB.STATIC) $(REGAL.OBJS)
|
||||
lib/$(SYSTEM)/$(REGAL.STATIC): lib/$(SYSTEM)/$(LIBPNG.STATIC) lib/$(SYSTEM)/$(ZLIB.STATIC) $(REGAL.OBJS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_AR)$(CCACHE) $(AR) cr $@ $(REGAL.OBJS)
|
||||
ifneq ($(RANLIB),)
|
||||
|
|
@ -280,8 +215,8 @@ ifneq ($(STRIP),)
|
|||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
REGAL.SHARED.DEPEND :=
|
||||
REGAL.SHARED.DEPEND += lib/$(SYSTEM)/$(GLSLOPT.STATIC) lib/$(SYSTEM)/$(PCRE.STATIC) lib/$(SYSTEM)/$(LIBPNG.STATIC) lib/$(SYSTEM)/$(ZLIB.STATIC)
|
||||
REGAL.SHARED.DEPEND :=
|
||||
REGAL.SHARED.DEPEND += lib/$(SYSTEM)/$(LIBPNG.STATIC) lib/$(SYSTEM)/$(ZLIB.STATIC)
|
||||
|
||||
ifdef APITRACE.STATIC
|
||||
REGAL.SHARED.DEPEND += lib/$(SYSTEM)/$(APITRACE.STATIC) lib/$(SYSTEM)/$(SNAPPY.STATIC)
|
||||
|
|
@ -290,9 +225,9 @@ endif
|
|||
ifdef REGAL.SHARED
|
||||
lib/$(SYSTEM)/$(REGAL.SHARED): $(REGAL.SHARED.DEPEND) $(REGAL.SOBJS)
|
||||
ifdef APITRACE.STATIC
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(REGAL.LDFLAGS.SO) -o $@ $(LDFLAGS.STARTGROUP) $(REGAL.SOBJS) lib/$(SYSTEM)/$(APITRACE.STATIC) $(LDFLAGS.ENDGROUP) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) $(REGAL.LDFLAGS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(LDFLAGS.SO) -o $@ $(LDFLAGS.STARTGROUP) $(REGAL.SOBJS) lib/$(SYSTEM)/$(APITRACE.STATIC) $(LDFLAGS.ENDGROUP) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) $(REGAL.LDFLAGS)
|
||||
else
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(REGAL.LDFLAGS.SO) -o $@ $(REGAL.SOBJS) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) $(REGAL.LDFLAGS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(LDFLAGS.SO) -o $@ $(REGAL.SOBJS) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) $(REGAL.LDFLAGS)
|
||||
endif
|
||||
ifneq ($(LN),)
|
||||
$(LN) $(REGAL.SHARED) lib/$(SYSTEM)/$(REGAL.SONAME)
|
||||
|
|
@ -308,17 +243,17 @@ endif
|
|||
|
||||
tmp/$(SYSTEM)/regal/static/%.o: src/regal/%.cpp $(REGAL.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGAL.CFLAGS) $(CFLAGS) $(CFLAGS.SO) $(GLSLOPT.INCLUDE) $(REGAL.INCLUDE) -o $@ -c $<
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGAL.CFLAGS) $(CFLAGS) $(CFLAGS.SO) $(REGAL.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regal/shared/%.o: src/regal/%.cpp $(REGAL.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGAL.CFLAGS) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) $(GLSLOPT.INCLUDE) $(REGAL.INCLUDE) -o $@ -c $<
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGAL.CFLAGS) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) $(REGAL.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regal/static/%.o: src/civetweb/%.c $(REGAL.HEADERS)
|
||||
tmp/$(SYSTEM)/regal/static/%.o: src/mongoose/%.c $(REGAL.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(REGAL.CFLAGS) $(CFLAGS) $(CFLAGS.SO) $(REGAL.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regal/shared/%.o: src/civetweb/%.c $(REGAL.HEADERS)
|
||||
tmp/$(SYSTEM)/regal/shared/%.o: src/mongoose/%.c $(REGAL.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(REGAL.CFLAGS) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) $(REGAL.INCLUDE) -o $@ -c $<
|
||||
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ MAKEFILE_REGALTEST_INCLUDED := 1
|
|||
|
||||
include build/common.inc
|
||||
|
||||
# Not supported for Emscripten - Revisit
|
||||
# Not supported for NaCL - Revisit
|
||||
|
||||
ifeq ($(filter emscripten% nacl-pnacl,$(SYSTEM)),)
|
||||
ifeq ($(filter nacl% emscripten%,$(SYSTEM)),)
|
||||
|
||||
include build/regaltest.inc
|
||||
|
||||
|
|
@ -16,8 +16,6 @@ include build/regaltest.inc
|
|||
#
|
||||
|
||||
include Makefile.regal
|
||||
include Makefile.pcrelib
|
||||
include Makefile.glsloptlib
|
||||
include Makefile.gtest
|
||||
|
||||
ifndef REGAL.STATIC
|
||||
|
|
@ -43,13 +41,13 @@ REGALTEST.SRCS.NAMES := $(notdir $(REGALTEST.SRCS))
|
|||
REGALTEST.OBJS := $(addprefix tmp/$(SYSTEM)/regaltest/static/,$(REGALTEST.SRCS.NAMES))
|
||||
REGALTEST.OBJS := $(REGALTEST.OBJS:.cpp=.o)
|
||||
REGALTEST.DEPS := $(REGALTEST.DEPS:.o=.d)
|
||||
REGALTEST.CFLAGS := -Isrc/googletest/include -Isrc/googlemock/include -Isrc/regal -Isrc/boost -Isrc/lookup3 -Isrc/pcre
|
||||
REGALTEST.CFLAGS := -Isrc/googletest/include -Isrc/googlemock/include -Isrc/regal -Isrc/boost
|
||||
REGALTEST.LIBS := -Llib/$(SYSTEM) $(LDFLAGS.X11) -lm
|
||||
|
||||
ifeq ($(filter nacl%,$(SYSTEM)),)
|
||||
REGALTEST.LIBS += -ldl
|
||||
else
|
||||
REGALTEST.LIBS += -lnacl_io -lppapi -lppapi_gles2
|
||||
REGALTEST.LIBS += -lnacl_io
|
||||
endif
|
||||
|
||||
-include $(REGALTEST.DEPS)
|
||||
|
|
@ -58,12 +56,12 @@ tmp/$(SYSTEM)/regaltest/static/%.o: tests/%.cpp
|
|||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGAL.CFLAGS) $(REGALTEST.CFLAGS) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
bin/$(SYSTEM)/regaltest$(BIN_EXTENSION): $(REGALTEST.OBJS) lib/$(SYSTEM)/$(GTEST.STATIC) lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(PCRE.STATIC) $(REGAL.SHARED.DEPEND)
|
||||
bin/$(SYSTEM)/regaltest$(BIN_EXTENSION): $(REGALTEST.OBJS) lib/$(SYSTEM)/$(GTEST.STATIC) lib/$(SYSTEM)/$(REGAL.STATIC) $(REGAL.SHARED.DEPEND)
|
||||
@mkdir -p $(dir $@)
|
||||
ifdef APITRACE.STATIC
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(REGALTEST.OBJS) $(LDFLAGS.STARTGROUP) lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(APITRACE.STATIC) $(LDFLAGS.ENDGROUP) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) $(REGALTEST.LIBS) lib/$(SYSTEM)/$(PCRE.STATIC) lib/$(SYSTEM)/$(GTEST.STATIC) $(REGAL.LDFLAGS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(REGALTEST.OBJS) $(REGALTEST.LIBS) $(LDFLAGS.STARTGROUP) lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(APITRACE.STATIC) $(LDFLAGS.ENDGROUP) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) lib/$(SYSTEM)/$(GTEST.STATIC) $(REGAL.LDFLAGS)
|
||||
else
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(REGALTEST.OBJS) lib/$(SYSTEM)/$(REGAL.STATIC) lib/$(SYSTEM)/$(PCRE.STATIC) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) $(REGALTEST.LIBS) lib/$(SYSTEM)/$(GTEST.STATIC) $(REGAL.LDFLAGS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(REGALTEST.OBJS) $(REGALTEST.LIBS) lib/$(SYSTEM)/$(REGAL.STATIC) $(REGAL.SHARED.DEPEND) $(REGAL.LIBS) lib/$(SYSTEM)/$(GTEST.STATIC) $(REGAL.LDFLAGS)
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
|
|
@ -75,7 +73,7 @@ test: bin/$(SYSTEM)/regaltest$(BIN_EXTENSION)
|
|||
ifeq ($(filter nacl%,$(SYSTEM)),)
|
||||
$^
|
||||
else
|
||||
"$(NACL_SDK_ROOT)/tools/sel_ldr.py" $^
|
||||
"$(NACL_SEL_LDR)" -a -B "$(NACL_IRT)" -- $^
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
|
|||
167
Makefile.regalw
167
Makefile.regalw
|
|
@ -1,167 +0,0 @@
|
|||
ifndef MAKEFILE_REGALW_INCLUDED
|
||||
MAKEFILE_REGALW_INCLUDED := 1
|
||||
|
||||
.PHONY: regalw.lib regalw.clean
|
||||
|
||||
include build/common.inc
|
||||
|
||||
include build/regal.inc
|
||||
|
||||
#
|
||||
# Regal Wrangler
|
||||
#
|
||||
|
||||
REGALW.STATIC ?= libRegalW.a
|
||||
REGALW.SHARED ?= libRegal.so
|
||||
|
||||
# Static library target not yet supported
|
||||
|
||||
REGALW.STATIC :=
|
||||
|
||||
# Shared library target not currently supported for NaCL or emscripten
|
||||
|
||||
ifneq ($(filter nacl% emscripten%,$(SYSTEM)),)
|
||||
REGALW.SHARED :=
|
||||
endif
|
||||
|
||||
|
||||
ifdef REGALW.SHARED
|
||||
|
||||
all:: regalw.lib
|
||||
|
||||
clean:: regalw.clean
|
||||
|
||||
REGALW.LDFLAGS := -lstdc++ -pthread -lm
|
||||
REGALW.LIBS :=
|
||||
|
||||
REGALW.SRCS := $(REGAL.CXX)
|
||||
REGALW.SRCS += src/md5/src/md5.c
|
||||
REGALW.SRCS += src/jsonsl/jsonsl.c
|
||||
|
||||
REGALW.CFLAGS += -DREGAL_WRANGLER=1
|
||||
REGALW.INCLUDE := $(REGAL.INCLUDE)
|
||||
|
||||
# Optional flags
|
||||
|
||||
ifeq ($(MODE),release)
|
||||
REGALW.CFLAGS += -DNDEBUG
|
||||
#REGALW.CFLAGS += -DREGAL_NO_TLS=0 # 1 for single threaded
|
||||
endif
|
||||
|
||||
#
|
||||
# Flags for custom mode
|
||||
#
|
||||
|
||||
ifeq ($(MODE),custom)
|
||||
endif
|
||||
|
||||
|
||||
REGALW.CFLAGS += -fvisibility=hidden
|
||||
|
||||
REGALW.SRCS.NAMES := $(notdir $(REGALW.SRCS))
|
||||
|
||||
REGALW.HEADERS :=
|
||||
REGALW.HEADERS += include/GL/Regal.h
|
||||
REGALW.HEADERS += src/regal/RegalPrivate.h
|
||||
|
||||
REGALW.OBJS := $(addprefix tmp/$(SYSTEM)/regalw/static/,$(REGALW.SRCS.NAMES))
|
||||
REGALW.OBJS := $(REGALW.OBJS:.c=.o)
|
||||
REGALW.OBJS := $(REGALW.OBJS:.cpp=.o)
|
||||
REGALW.DEPS := $(REGALW.OBJS:.o=.d)
|
||||
|
||||
REGALW.SOBJS := $(addprefix tmp/$(SYSTEM)/regalw/shared/,$(REGALW.SRCS.NAMES))
|
||||
REGALW.SOBJS := $(REGALW.SOBJS:.c=.o)
|
||||
REGALW.SOBJS := $(REGALW.SOBJS:.cpp=.o)
|
||||
REGALW.SDEPS := $(LIBS.SOBJS:.o=.d)
|
||||
|
||||
-include $(REGALW.DEPS) $(REGALW.SDEPS)
|
||||
|
||||
REGALW.LIBS += $(LDFLAGS.X11)
|
||||
|
||||
ifneq ($(filter linux%,$(SYSTEM)),)
|
||||
REGALW.SONAME := libRegalW.so.$(SO_MAJOR)
|
||||
REGALW.DEVLNK := libRegalW.so
|
||||
REGALW.SHARED := libRegalW.so.$(SO_VERSION)
|
||||
REGALW.LDFLAGS.SO := $(LDFLAGS.SO) $(LDFLAGS.DYNAMIC) -Wl,-soname=$(REGALW.SONAME)
|
||||
endif
|
||||
|
||||
ifneq ($(filter darwin%,$(SYSTEM)),)
|
||||
REGALW.SONAME := libRegalW.$(SO_MAJOR).dylib
|
||||
REGALW.DEVLNK := libRegalW.dylib
|
||||
REGALW.SHARED := libRegalW.$(SO_VERSION).dylib
|
||||
REGALW.FRAMEWORK := RegalWrangler
|
||||
REGALW.LDFLAGS.SO := $(LDFLAGS.SO) $(LDFLAGS.DYNAMIC) -current_version $(SO_VERSION) -compatibility_version $(SO_MAJOR)
|
||||
REGALW.LDFLAGS += -Wl,-reexport-lGLU -L/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries
|
||||
endif
|
||||
|
||||
ifdef REGALW.STATIC
|
||||
regalw.lib: lib/$(SYSTEM)/$(REGALW.STATIC)
|
||||
endif
|
||||
|
||||
ifdef REGALW.SHARED
|
||||
regalw.lib: lib/$(SYSTEM)/$(REGALW.SHARED)
|
||||
endif
|
||||
|
||||
regalw.clean:
|
||||
$(RM) -r tmp/$(SYSTEM)/regalw/static
|
||||
$(RM) -r tmp/$(SYSTEM)/regalw/shared
|
||||
ifdef REGALW.STATIC
|
||||
$(RM) -r lib/$(SYSTEM)/$(REGALW.STATIC)
|
||||
endif
|
||||
ifdef REGALW.SHARED
|
||||
$(RM) -r bin/$(SYSTEM)/$(REGALW.SHARED)
|
||||
endif
|
||||
|
||||
lib/$(SYSTEM)/$(REGALW.STATIC): $(REGALW.OBJS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_AR)$(CCACHE) $(AR) cr $@ $(REGALW.OBJS)
|
||||
ifneq ($(RANLIB),)
|
||||
$(LOG_RANLIB)$(RANLIB) $@
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
|
||||
REGALW.SHARED.DEPEND :=
|
||||
|
||||
ifdef REGALW.SHARED
|
||||
lib/$(SYSTEM)/$(REGALW.SHARED): $(REGALW.SHARED.DEPEND) $(REGALW.SOBJS)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) $(REGALW.LDFLAGS.SO) -o $@ $(REGALW.SOBJS) $(REGALW.SHARED.DEPEND) $(REGALW.LIBS) $(REGALW.LDFLAGS)
|
||||
ifneq ($(LN),)
|
||||
$(LN) $(REGALW.SHARED) lib/$(SYSTEM)/$(REGALW.SONAME)
|
||||
$(LN) $(REGALW.SHARED) lib/$(SYSTEM)/$(REGALW.DEVLNK)
|
||||
ifneq ($(REGALW.FRAMEWORK),)
|
||||
$(LN) $(REGALW.SHARED) lib/$(SYSTEM)/$(REGALW.FRAMEWORK)
|
||||
endif
|
||||
endif
|
||||
ifneq ($(STRIP),)
|
||||
$(LOG_STRIP)$(STRIP) -x $@
|
||||
endif
|
||||
endif
|
||||
|
||||
tmp/$(SYSTEM)/regalw/static/%.o: src/regal/%.cpp $(REGALW.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGALW.CFLAGS) $(CFLAGS) $(CFLAGS.SO) $(REGALW.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regalw/shared/%.o: src/regal/%.cpp $(REGALW.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CXX)$(CCACHE) $(CXX) $(REGALW.CFLAGS) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) $(REGALW.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regalw/static/%.o: src/md5/src/%.c $(REGALW.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(REGALW.CFLAGS) $(CFLAGS) $(CFLAGS.SO) $(REGALW.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regalw/shared/%.o: src/md5/src/%.c $(REGALW.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(REGALW.CFLAGS) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) $(REGALW.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regalw/static/%.o: src/jsonsl/%.c $(REGALW.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(REGALW.CFLAGS) $(CFLAGS) $(CFLAGS.SO) $(REGALW.INCLUDE) -o $@ -c $<
|
||||
|
||||
tmp/$(SYSTEM)/regalw/shared/%.o: src/jsonsl/%.c $(REGALW.HEADERS)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(REGALW.CFLAGS) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) $(REGALW.INCLUDE) -o $@ -c $<
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
@ -5,26 +5,17 @@ MAKEFILE_TIGER_INCLUDED := 1
|
|||
|
||||
include build/common.inc
|
||||
|
||||
# Not supported for NaCL or emscripten - Revisit
|
||||
|
||||
ifeq ($(filter nacl% emscripten%,$(SYSTEM)),)
|
||||
|
||||
#
|
||||
# tiger
|
||||
#
|
||||
|
||||
include Makefile.regal
|
||||
include Makefile.glut
|
||||
include Makefile.glew
|
||||
|
||||
ifndef REGAL.SHARED
|
||||
ifndef REGAL.STATIC
|
||||
$(error tiger needs Regal.)
|
||||
endif
|
||||
|
||||
ifndef GLEW.SHARED
|
||||
$(error tiger needs GLEW.)
|
||||
endif
|
||||
|
||||
all:: tiger.bin
|
||||
|
||||
clean:: tiger.clean
|
||||
|
|
@ -42,19 +33,9 @@ TIGER.SRCS.NAMES := $(notdir $(TIGER.SRCS))
|
|||
TIGER.OBJS := $(addprefix tmp/$(SYSTEM)/tiger/static/,$(TIGER.SRCS.NAMES))
|
||||
TIGER.OBJS := $(TIGER.OBJS:.c=.o)
|
||||
TIGER.DEPS := $(TIGER.DEPS:.o=.d)
|
||||
TIGER.CFLAGS := -Iinclude -Iexamples/tiger -DGLEW_NO_GLU=1
|
||||
TIGER.LIBS += -Llib/$(SYSTEM)
|
||||
|
||||
# use RegalGLUT, if possible
|
||||
|
||||
ifdef GLUT.SHARED
|
||||
TIGER.LIBS += -lRegalGLUT -lRegalGLU
|
||||
else
|
||||
TIGER.LIBS += $(LDFLAGS.GLUT) $(LDFLAGS.GLU) $(LDFLAGS.X11)
|
||||
endif
|
||||
|
||||
TIGER.LIBS += -lRegalGLEW -lRegal
|
||||
TIGER.LIBS += -lm
|
||||
TIGER.CFLAGS := -Iinclude -DGLEW_NO_GLU
|
||||
TIGER.LIBS += -Llib/$(SYSTEM) -lRegalGLEW $(LDFLAGS.GLUT) $(LDFLAGS.GLU) -lRegal $(LDFLAGS.X11)
|
||||
TIGER.LIBS += -lm -pthread
|
||||
|
||||
-include $(TIGER.DEPS)
|
||||
|
||||
|
|
@ -62,16 +43,7 @@ tmp/$(SYSTEM)/tiger/static/%.o: examples/tiger/%.c
|
|||
@mkdir -p $(dir $@)
|
||||
$(LOG_CC)$(CCACHE) $(CC) $(TIGER.CFLAGS) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $<
|
||||
|
||||
TIGER.DEPEND :=
|
||||
TIGER.DEPEND += lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
|
||||
ifdef GLUT.SHARED
|
||||
bin/$(SYSTEM)/tiger: lib/$(SYSTEM)/$(GLUT.SHARED) lib/$(SYSTEM)/$(GLU.SHARED)
|
||||
endif
|
||||
|
||||
bin/$(SYSTEM)/tiger: lib/$(SYSTEM)/$(GLEW.SHARED) lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
|
||||
bin/$(SYSTEM)/tiger: $(TIGER.OBJS)
|
||||
bin/$(SYSTEM)/tiger: $(TIGER.OBJS) lib/$(SYSTEM)/$(GLEW.SHARED) lib/$(SYSTEM)/$(REGAL.SHARED)
|
||||
@mkdir -p $(dir $@)
|
||||
$(LOG_LD)$(CCACHE) $(LD) $(LDFLAGS.EXTRA) -o $@ $(TIGER.OBJS) $(TIGER.LIBS)
|
||||
ifneq ($(STRIP),)
|
||||
|
|
@ -79,4 +51,3 @@ ifneq ($(STRIP),)
|
|||
endif
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
202
README.rst
202
README.rst
|
|
@ -18,27 +18,21 @@ Regal
|
|||
Recent News
|
||||
===========
|
||||
|
||||
* November 2013 - Regal Wrangler support added.
|
||||
* October 2013 - `Emscripten <https://github.com/kripken/emscripten>`_ support added.
|
||||
* July 2013 - New binaries available for Windows and Mac.
|
||||
* July 2013 - `OpenGL 4.4 <http://www.opengl.org/registry/>`_ API support added.
|
||||
* July 2013 - `apitrace <http://apitrace.github.io/>`_ support added.
|
||||
* July 30th 2013 - New binaries available for Windows and Mac.
|
||||
* July 26th 2013 - `Emscripten <https://github.com/kripken/emscripten>`_ support in progress.
|
||||
* July 22nd 2013 - `OpenGL 4.4 <http://www.opengl.org/registry/>`_ API support added.
|
||||
* July 21st 2013 - `apitrace <http://apitrace.github.io/>`_ support added.
|
||||
|
||||
Summary
|
||||
=======
|
||||
|
||||
Regal is a user-space OpenGL layer for OpenGL 2.x, 3.x, 4.x, Core contexts and ES 2.0.
|
||||
Regal implements OpenGL loading, emulation for ES and Core contexts and tools for debugging.
|
||||
OpenGL portability layer for OpenGL 2.x, 3.x, 4.x, Core contexts and ES 2.0
|
||||
|
||||
Status
|
||||
======
|
||||
|
||||
Regal has been in active development on github since May of 2012 ---
|
||||
it is in deployment for internal projects, and has received significant
|
||||
external contributions.
|
||||
|
||||
Features such as emulation might not be complete or bug-free enough for
|
||||
every situation, milage may vary, contributions welcome.
|
||||
+---------------+----------------------------------------------------------------------+
|
||||
| **Warning** | Regal is pre-alpha software, it is available here for evaluation |
|
||||
| | and to play with the examples. Don't use it in your projects yet. |
|
||||
| | You have been warned. |
|
||||
+---------------+----------------------------------------------------------------------+
|
||||
|
||||
.. contents::
|
||||
|
||||
|
|
@ -104,107 +98,101 @@ Features
|
|||
Emulation
|
||||
---------
|
||||
|
||||
- Fixed function texturing, lighting and fog.
|
||||
- Direct State Access extension
|
||||
- Fixed function texturing, lighting and fog.
|
||||
- Direct State Access extension
|
||||
|
||||
http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
|
||||
http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
|
||||
|
||||
- GL_EXT_debug_marker extension
|
||||
- GL_EXT_debug_marker extension
|
||||
|
||||
http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt
|
||||
http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt
|
||||
|
||||
- Fixed function and DSA emulation enabled by default, except when compatibility context
|
||||
with DSA extension detected.
|
||||
- Fixed function and DSA emulation enabled by default, except when compatibility context
|
||||
with DSA extension detected.
|
||||
|
||||
- Build-time configuration:
|
||||
- Build-time configuration:
|
||||
|
||||
- **REGAL_EMULATION** -- Enable/disable the use of emulation
|
||||
- **REGAL_FORCE_EMULATION** -- Force the use of emulation, even for compatibility contexts with DSA
|
||||
- **REGAL_EMULATION** -- Enable/disable the use of emulation
|
||||
- **REGAL_FORCE_EMULATION** -- Force the use of emulation, even for compatibility contexts with DSA
|
||||
|
||||
- Environment variable configuration:
|
||||
- Environment variable configuration:
|
||||
|
||||
- **REGAL_EMULATION** -- Enable/disable the use of emulation
|
||||
- **REGAL_FORCE_EMULATION** -- Force the use of emulation, even for compatibility contexts with DSA
|
||||
- **REGAL_EMULATION** -- Enable/disable the use of emulation
|
||||
- **REGAL_FORCE_EMULATION** -- Force the use of emulation, even for compatibility contexts with DSA
|
||||
|
||||
- Runime configuration via GL_REGAL_enable_:
|
||||
- Runime configuration via GL_REGAL_enable_:
|
||||
|
||||
- **GL_EMULATION_REGAL** -- glEnable/glDisable emulation
|
||||
|
||||
.. NOTE:: Emulation is not supported in REGAL_WRANGLER=1 mode.
|
||||
- **GL_EMULATION_REGAL** -- glEnable/glDisable emulation
|
||||
|
||||
OpenGL error checking
|
||||
---------------------
|
||||
|
||||
- Disabled by default.
|
||||
- Disabled by default.
|
||||
|
||||
- Build-time configuration: **REGAL_ERROR**
|
||||
- Build-time configuration: **REGAL_ERROR**
|
||||
|
||||
- Environment variable configuration: **REGAL_ERROR**
|
||||
- Environment variable configuration: **REGAL_ERROR**
|
||||
|
||||
- Runtime configuration via GL_REGAL_enable_: **GL_ERROR_REGAL**
|
||||
|
||||
.. NOTE:: OpenGL error checking is not supported in REGAL_WRANGLER=1 mode.
|
||||
- Runtime configuration via GL_REGAL_enable_: **GL_ERROR_REGAL**
|
||||
|
||||
Logging
|
||||
-------
|
||||
|
||||
Regal supports detailed logging for development purposes.
|
||||
Regal supports detailed logging for development purposes.
|
||||
|
||||
- **Error** -- Fatal and non-fatal Regal runtime errors.
|
||||
- **Warning** -- Non-fatal Regal warnings.
|
||||
- **Info** -- Informational messages.
|
||||
- **App** -- Application calls into Regal.
|
||||
- **Driver** -- Regal calls into OpenGL.
|
||||
- **Internal** -- Internal Regal calls.
|
||||
- **Http** -- HTTP traffic logging.
|
||||
- **Error** -- Fatal and non-fatal Regal runtime errors.
|
||||
- **Warning** -- Non-fatal Regal warnings.
|
||||
- **Info** -- Informational messages.
|
||||
- **App** -- Application calls into Regal.
|
||||
- **Driver** -- Regal calls into OpenGL.
|
||||
- **Internal** -- Internal Regal calls.
|
||||
- **Http** -- HTTP traffic logging.
|
||||
|
||||
Build-time configuration:
|
||||
Build-time configuration:
|
||||
|
||||
- **REGAL_LOG_ERROR**
|
||||
- **REGAL_LOG_WARNING**
|
||||
- **REGAL_LOG_INFO**
|
||||
- **REGAL_LOG_APP**
|
||||
- **REGAL_LOG_DRIVER**
|
||||
- **REGAL_LOG_INTERNAL**
|
||||
- **REGAL_LOG_HTTP**
|
||||
- **REGAL_LOG_ERROR**
|
||||
- **REGAL_LOG_WARNING**
|
||||
- **REGAL_LOG_INFO**
|
||||
- **REGAL_LOG_APP**
|
||||
- **REGAL_LOG_DRIVER**
|
||||
- **REGAL_LOG_INTERNAL**
|
||||
- **REGAL_LOG_HTTP**
|
||||
|
||||
* Debug mode: All logging supported with error, warning, info and http logging enabled.
|
||||
* Release mode: Support for application, driver and internal logging disabled by default.
|
||||
* Debug mode: All logging supported with error, warning, info and http logging enabled.
|
||||
* Release mode: Support for application, driver and internal logging disabled by default.
|
||||
|
||||
Environment variable configuration:
|
||||
Environment variable configuration:
|
||||
|
||||
- **REGAL_LOG_ERROR**
|
||||
- **REGAL_LOG_WARNING**
|
||||
- **REGAL_LOG_INFO**
|
||||
- **REGAL_LOG_APP**
|
||||
- **REGAL_LOG_DRIVER**
|
||||
- **REGAL_LOG_INTERNAL**
|
||||
- **REGAL_LOG_HTTP**
|
||||
- **REGAL_LOG_API** --- Application + Driver OpenGL logging
|
||||
- **REGAL_LOG_NONE** --- enable or disable all logging
|
||||
- **REGAL_LOG_ERROR**
|
||||
- **REGAL_LOG_WARNING**
|
||||
- **REGAL_LOG_INFO**
|
||||
- **REGAL_LOG_APP**
|
||||
- **REGAL_LOG_DRIVER**
|
||||
- **REGAL_LOG_INTERNAL**
|
||||
- **REGAL_LOG_HTTP**
|
||||
- **REGAL_LOG_API** --- Application + Driver OpenGL logging
|
||||
- **REGAL_LOG_NONE** --- enable or disable all logging
|
||||
|
||||
Environment variable lookup is globally disabled by defining **REGAL_NO_GETENV**
|
||||
at compile-time.
|
||||
Environment variable lookup is globally disabled by defining **REGAL_NO_GETENV**
|
||||
at compile-time.
|
||||
|
||||
Runtime configuration via GL_REGAL_log_ extension: (**glEnable/glDisable/glIsEnabled**)
|
||||
Runtime configuration via GL_REGAL_log_ extension: (**glEnable/glDisable/glIsEnabled**)
|
||||
|
||||
- **GL_LOG_ERROR_REGAL**
|
||||
- **GL_LOG_WARNING_REGAL**
|
||||
- **GL_LOG_INFO_REGAL**
|
||||
- **GL_LOG_APP_REGAL**
|
||||
- **GL_LOG_DRIVER_REGAL**
|
||||
- **GL_LOG_INTERNAL_REGAL**
|
||||
- **GL_LOG_HTTP_REGAL**
|
||||
- **GL_LOG_ERROR_REGAL**
|
||||
- **GL_LOG_WARNING_REGAL**
|
||||
- **GL_LOG_INFO_REGAL**
|
||||
- **GL_LOG_APP_REGAL**
|
||||
- **GL_LOG_DRIVER_REGAL**
|
||||
- **GL_LOG_INTERNAL_REGAL**
|
||||
- **GL_LOG_HTTP_REGAL**
|
||||
|
||||
Other compile-time or runtime configuration of logging:
|
||||
|
||||
- **REGAL_LOG** --- enable or disable logging
|
||||
- **REGAL_LOG_FILE** --- log to specified filename
|
||||
- **REGAL_LOG_MAX_LINES** --- limit the number of lines of multi-line messages (shaders, etc)
|
||||
- **REGAL_LOG_JSON** --- log in JSON mode
|
||||
- **REGAL_LOG_JSON_FILE** --- JSON log to specified filename
|
||||
|
||||
.. NOTE:: API logging is not supported in REGAL_WRANGLER=1 mode.
|
||||
Other compile-time or runtime configuration of logging:
|
||||
|
||||
- **REGAL_LOG** --- enable or disable logging
|
||||
- **REGAL_LOG_FILE** --- log to specified filename
|
||||
- **REGAL_LOG_MAX_LINES** --- limit the number of lines of multi-line messages (shaders, etc)
|
||||
- **REGAL_LOG_JSON** --- log in JSON mode
|
||||
- **REGAL_LOG_JSON_FILE** --- JSON log to specified filename
|
||||
|
||||
Multi-threading support
|
||||
-----------------------
|
||||
|
|
@ -240,24 +228,22 @@ Spoofing OpenGL vendor, renderer, version and extension strings
|
|||
Browser-based interface
|
||||
-----------------------
|
||||
|
||||
- Enabled by default.
|
||||
- Enabled by default.
|
||||
|
||||
- **REGAL_HTTP** --- Build-time and environment variable enable/disable.
|
||||
- **REGAL_HTTP_PORT** --- Port for HTTP connections (8080 by default)
|
||||
- **REGAL_HTTP_LOG_LIMIT** --- Number of lines of logging buffered
|
||||
- **REGAL_NO_HTTP** --- Build-time and environment variable enable/disable.
|
||||
- **REGAL_HTTP_PORT** --- Port for HTTP connections (8080 by default)
|
||||
- **REGAL_HTTP_LOG_LIMIT** --- Number of lines of logging buffered
|
||||
|
||||
- `http://127.0.0.1:8080/log`_ --- View log
|
||||
- `http://127.0.0.1:8080/glEnable?GL_LOG_APP_REGAL`_ --- Enable/disable application logging
|
||||
- `http://127.0.0.1:8080/glEnable?GL_LOG_DRIVER_REGAL`_ --- Enable/disable driver logging
|
||||
- `http://127.0.0.1:8080`_ --- State information
|
||||
- `http://127.0.0.1:8080/log`_ --- View log
|
||||
- `http://127.0.0.1:8080/glEnable?GL_LOG_APP_REGAL`_ --- Enable/disable application logging
|
||||
- `http://127.0.0.1:8080/glEnable?GL_LOG_DRIVER_REGAL`_ --- Enable/disable driver logging
|
||||
- `http://127.0.0.1:8080`_ --- State information
|
||||
|
||||
.. _http://127.0.0.1:8080/log: http://127.0.0.1:8080/log
|
||||
.. _http://127.0.0.1:8080/glEnable?GL_LOG_APP_REGAL: http://127.0.0.1:8080/glEnable?GL_LOG_APP_REGAL
|
||||
.. _http://127.0.0.1:8080/glEnable?GL_LOG_DRIVER_REGAL: http://127.0.0.1:8080/glEnable?GL_LOG_DRIVER_REGAL
|
||||
.. _http://127.0.0.1:8080: http://127.0.0.1:8080
|
||||
|
||||
.. NOTE:: Browser interface is not supported in REGAL_WRANGLER=1 mode.
|
||||
|
||||
Regal OpenGL extensions
|
||||
-----------------------
|
||||
|
||||
|
|
@ -277,24 +263,22 @@ Regal API
|
|||
In Progress
|
||||
===========
|
||||
|
||||
* Light-weight loader-only "wrangler" mode along the lines of GLEW.
|
||||
* Context sharing support
|
||||
* Pointer-based API
|
||||
* glPushAttrib emulation
|
||||
|
||||
Planned Features
|
||||
================
|
||||
|
||||
* NV_path_rendering emulation.
|
||||
* GLSL to GLSL translation.
|
||||
* ES 3.0 support
|
||||
* Debug label.
|
||||
* Debug output.
|
||||
* Display list emulation.
|
||||
* Web browser-based debugging tools.
|
||||
* Display list emulation.
|
||||
|
||||
Limitations
|
||||
===========
|
||||
|
||||
* Incomplete implementation, so far.
|
||||
* Shared OpenGL contexts supported for single-threaded only.
|
||||
* Limited GLSL language support.
|
||||
* GL_QUADS only works in immediate mode or with DrawArrays for ES and core profiles.
|
||||
|
|
@ -312,7 +296,6 @@ Contact Information
|
|||
Other Information
|
||||
=================
|
||||
|
||||
* Big Android BBQ 2013: `Developing for Dedicated Android Gaming Systems <https://developer.nvidia.com/content/nvidia-shield-and-bbq-big-android-bbq-hurst-tx>`_ `(.pdf slides) <https://developer.nvidia.com/sites/default/files/akamai/mobile/docs/NVIDIA_Dedicated_Android_Gaming_2013_updated.pdf>`_.
|
||||
* #AltDevBlogADay blog: `Bringing Regal OpenGL to Native Client <http://www.altdevblogaday.com/2012/09/04/bringing-regal-opengl-to-native-client/>`_.
|
||||
* opengl.org forum thread: `Introducing Regal <http://www.opengl.org/discussion_boards/showthread.php/178678-Introducing-Regal?p=1241199>`_.
|
||||
* Slides - `Regal for Software Development <http://www.slideshare.net/nigelstewart1/regal-tlf>`_.
|
||||
|
|
@ -334,18 +317,13 @@ Linux
|
|||
|
||||
* 32-bit:
|
||||
|
||||
``$ sudo yum install gcc-c++ zlib-devel libpng-devel libXmu-devel libXi-devel``
|
||||
``$ sudo yum install zlib-devel libpng-devel``
|
||||
|
||||
* 64-bit
|
||||
|
||||
``$ sudo yum install gcc-c++``
|
||||
|
||||
``$ sudo yum install zlib-devel.i686 libpng-devel.i686``
|
||||
|
||||
``$ sudo yum install zlib-devel.x86_64 libpng-devel.x86_64``
|
||||
|
||||
``$ sudo yum install libXmu-devel libXi-devel``
|
||||
|
||||
* Ubuntu/Debian/Mint recommended packages:
|
||||
|
||||
``$ apt-get install libxmu-dev libxi-dev``
|
||||
|
|
@ -380,7 +358,9 @@ PPAPI and NaCl
|
|||
|
||||
* NACL_SDK_ROOT needs to be set
|
||||
|
||||
* NACL_LIBC=newlib is the default, specify glibc or pnacl as alternatives
|
||||
* NACL_LIBC=newlib is the default, specify NACL_LIBC=glibc as an alternative
|
||||
|
||||
* regaltest requires pepper_26 or newer
|
||||
|
||||
Questions and Answers
|
||||
=====================
|
||||
|
|
@ -404,10 +384,6 @@ Related Efforts
|
|||
|
||||
* Mesa3D mail thread: `Mesa as part of OpenGL-on-OpenGL ES 2.0 <http://lists.freedesktop.org/archives/mesa-dev/2012-March/019692.html>`_
|
||||
|
||||
* `glshim <https://github.com/lunixbochs/glshim>`_, `Pandora forum thread <http://boards.openpandora.org/index.php/topic/11506-opengl-implementation-tldr-more-games/>`_.
|
||||
|
||||
* Runtime OpenGL to OpenGL ES translator: `glesport <http://unrealvoodoo.org/cgi-bin/cgit/glesport.git/log/>`_, `OpenGL ES for Maemo <http://unrealvoodoo.org/hiteck/blog/2007/07/opengl-es-for-maemo/>`_.
|
||||
|
||||
License and Credits
|
||||
===================
|
||||
|
||||
|
|
|
|||
|
|
@ -1,114 +0,0 @@
|
|||
# glu.inc
|
||||
#
|
||||
# Generic gnumake .inc for building GLU
|
||||
#
|
||||
|
||||
# Sources
|
||||
|
||||
GLU.C += src/glu/libtess/dict.c
|
||||
GLU.C += src/glu/libtess/geom.c
|
||||
GLU.C += src/glu/libtess/memalloc.c
|
||||
GLU.C += src/glu/libtess/mesh.c
|
||||
GLU.C += src/glu/libtess/normal.c
|
||||
#GLU.C += src/glu/libtess/priorityq-heap.c
|
||||
GLU.C += src/glu/libtess/priorityq.c
|
||||
GLU.C += src/glu/libtess/render.c
|
||||
GLU.C += src/glu/libtess/sweep.c
|
||||
GLU.C += src/glu/libtess/tess.c
|
||||
GLU.C += src/glu/libtess/tessmono.c
|
||||
GLU.C += src/glu/libutil/error.c
|
||||
GLU.C += src/glu/libutil/glue.c
|
||||
GLU.C += src/glu/libutil/mipmap.c
|
||||
GLU.C += src/glu/libutil/project.c
|
||||
GLU.C += src/glu/libutil/quad.c
|
||||
GLU.C += src/glu/libutil/registry.c
|
||||
|
||||
GLU.CXX += src/glu/libnurbs/interface/bezierEval.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/bezierPatch.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/bezierPatchMesh.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/glcurveval.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/glinterface.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/glrenderer.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/glsurfeval.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/incurveeval.cc
|
||||
GLU.CXX += src/glu/libnurbs/interface/insurfeval.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/arc.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/arcsorter.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/arctess.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/backend.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/basiccrveval.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/basicsurfeval.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/bin.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/bufpool.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/cachingeval.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/ccw.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/coveandtiler.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/curve.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/curvelist.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/curvesub.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/dataTransform.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/displaylist.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/flist.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/flistsorter.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/hull.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/intersect.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/knotvector.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/mapdesc.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/mapdescv.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/maplist.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/mesher.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/monotonizer.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/monoTriangulationBackend.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/mycode.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/nurbsinterfac.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/nurbstess.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/patch.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/patchlist.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/quilt.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/reader.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/renderhints.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/slicer.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/sorter.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/splitarcs.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/subdivider.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/tobezier.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/trimline.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/trimregion.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/trimvertpool.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/uarray.cc
|
||||
GLU.CXX += src/glu/libnurbs/internals/varray.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/directedLine.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/gridWrap.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/monoChain.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/monoPolyPart.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/monoTriangulation.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/partitionX.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/partitionY.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/polyDBG.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/polyUtil.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/primitiveStream.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/quicksort.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/rectBlock.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/sampleComp.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/sampleCompBot.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/sampleCompRight.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/sampleCompTop.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/sampledLine.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/sampleMonoPoly.cc
|
||||
GLU.CXX += src/glu/libnurbs/nurbtess/searchTree.cc
|
||||
|
||||
#
|
||||
|
||||
GLU.CFLAGS := -Isrc/glu/include -Isrc/glu/libnurbs/interface -Isrc/glu/libnurbs/internals -Isrc/glu/libnurbs/nurbtess
|
||||
GLU.CFLAGS += -DLIBRARYBUILD
|
||||
|
||||
GLU.SHARED := libRegalGLU.so
|
||||
GLU.STATIC := libRegalGLUlib.a
|
||||
|
||||
ifneq ($(filter darwin%,$(SYSTEM)),)
|
||||
GLU.SHARED := libRegalGLU.dylib
|
||||
endif
|
||||
|
||||
ifneq ($(filter nacl%,$(SYSTEM)),)
|
||||
GLU.SHARED :=
|
||||
endif
|
||||
|
|
@ -13,17 +13,13 @@ ifndef REGAL_FORCE_REBUILD
|
|||
endif
|
||||
endif
|
||||
|
||||
# apitrace still needs -DANDROID=1
|
||||
|
||||
regal_cflags := -DANDROID=1 -DREGAL_NO_PNG=1 -DREGAL_CONFIG_FILE=/data/.regal -Werror -Wno-constant-logical-operand
|
||||
regal_cflags := -DANDROID=1 -DREGAL_NO_PNG=1 -Werror
|
||||
|
||||
regal_path := $(LOCAL_PATH)/../../../..
|
||||
|
||||
include $(regal_path)/build/zlib.inc
|
||||
include $(regal_path)/build/snappy.inc
|
||||
include $(regal_path)/build/apitrace.inc
|
||||
include $(regal_path)/build/glslopt.inc
|
||||
include $(regal_path)/build/pcre.inc
|
||||
include $(regal_path)/build/regal.inc
|
||||
|
||||
#
|
||||
|
|
@ -61,34 +57,20 @@ apitrace_src_files := $(patsubst $(LOCAL_PATH)/%,%,$(apitrace_src_files))
|
|||
apitrace_c_includes := $(regal_path)/include $(regal_path)/src/apitrace/common $(regal_path)/src/apitrace/gen/dispatch $(regal_path)/src/apitrace/dispatch $(regal_path)/src/apitrace/helpers $(regal_path)/src/apitrace/wrappers $(regal_path)/src/apitrace
|
||||
apitrace_c_includes += $(regal_path)/src/zlib/include $(regal_path)/src/zlib/src $(regal_path)/src/snappy
|
||||
apitrace_c_includes += $(regal_path)/src/apitrace/thirdparty/khronos
|
||||
apitrace_c_includes += $(regal_path)/src/regal $(regal_path)/src/civetweb $(regal_path)/src/squish
|
||||
apitrace_c_includes += $(regal_path)/src/regal $(regal_path)/src/mongoose $(regal_path)/src/squish
|
||||
apitrace_c_includes := $(patsubst $(LOCAL_PATH)/../%,%,$(apitrace_c_includes))
|
||||
|
||||
apitrace_export_c_includes := $(regal_path)/include
|
||||
|
||||
#
|
||||
# glsl optimizer
|
||||
#
|
||||
glslopt_src_files := $(patsubst %,$(regal_path)/%,$(GLSLOPT.CXX))
|
||||
glslopt_src_files := $(patsubst $(LOCAL_PATH)/%,%,$(glslopt_src_files))
|
||||
glslopt_c_includes := $(patsubst -I%,$(regal_path)/%,$(GLSLOPT.INCLUDE))
|
||||
|
||||
#
|
||||
# pcre
|
||||
#
|
||||
pcre_src_files := $(patsubst %,$(regal_path)/%,$(PCRE.C))
|
||||
pcre_src_files := $(patsubst $(LOCAL_PATH)/%,%,$(pcre_src_files))
|
||||
pcre_c_includes := $(patsubst -I%,$(regal_path)/%,$(PCRE.INCLUDE))
|
||||
|
||||
#
|
||||
# regal
|
||||
#
|
||||
|
||||
regal_src_files := $(patsubst %,$(regal_path)/%,$(REGAL.CXX))
|
||||
regal_src_files += $(regal_path)/src/civetweb/civetweb.c $(regal_path)/src/md5/src/md5.c $(regal_path)/src/jsonsl/jsonsl.c
|
||||
regal_src_files += $(regal_path)/src/mongoose/mongoose.c $(regal_path)/src/md5/src/md5.c $(regal_path)/src/jsonsl/jsonsl.c
|
||||
regal_src_files := $(patsubst $(LOCAL_PATH)/%,%,$(regal_src_files))
|
||||
|
||||
regal_c_includes := $(regal_path)/include $(regal_path)/src/regal $(regal_path)/src/path $(regal_path)/src/boost $(regal_path)/src/civetweb $(regal_path)/src/md5/include $(regal_path)/src/lookup3 $(regal_path)/src/jsonsl $(regal_path)/src/glsl/include $(regal_path)/src/glsl/src/glsl $(regal_path)/src/glsl/src/mesa $(regal_path)/src/pcre
|
||||
regal_c_includes := $(regal_path)/include $(regal_path)/src/regal $(regal_path)/src/boost $(regal_path)/src/mongoose $(regal_path)/src/md5/include $(regal_path)/src/lookup3 $(regal_path)/src/jsonsl
|
||||
regal_c_includes := $(patsubst $(LOCAL_PATH)/../%,%,$(regal_c_includes))
|
||||
|
||||
regal_export_c_includes := $(regal_path)/include
|
||||
|
|
@ -136,48 +118,19 @@ include $(BUILD_STATIC_LIBRARY)
|
|||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := apitrace
|
||||
LOCAL_SRC_FILES := $(apitrace_src_files)
|
||||
LOCAL_CFLAGS := $(regal_cflags) -DAPITRACE_TLS=0 -DHAVE_EXTERNAL_OS_LOG=1 -DHAVE_BACKTRACE=0 -DTRACE_ENABLED_CHECK=0
|
||||
|
||||
LOCAL_CFLAGS := $(regal_cflags) -DAPITRACE_TLS=0 -DTRACE_OS_LOG=0 -DTRACE_BACKTRACE=0
|
||||
LOCAL_C_INCLUDES := $(apitrace_c_includes)
|
||||
LOCAL_EXPORT_C_INCLUDES := $(apitrace_export_c_includes)
|
||||
LOCAL_EXPORT_LDLIBS :=
|
||||
LOCAL_ARM_MODE := arm
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
# include $(CLEAR_VARS)
|
||||
# LOCAL_MODULE := glslopt
|
||||
# LOCAL_SRC_FILES := $(glslopt_src_files)
|
||||
# LOCAL_CFLAGS := $(regal_cflags)
|
||||
# LOCAL_C_INCLUDES := $(glslopt_c_includes)
|
||||
# LOCAL_EXPORT_LDLIBS :=
|
||||
# LOCAL_ARM_MODE := arm
|
||||
# include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := glslopt
|
||||
LOCAL_SRC_FILES := $(glslopt_src_files)
|
||||
LOCAL_CFLAGS := $(regal_cflags) -Wno-redefinitions
|
||||
LOCAL_C_INCLUDES := $(glslopt_c_includes)
|
||||
LOCAL_EXPORT_LDLIBS :=
|
||||
LOCAL_ARM_MODE := arm
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := pcre
|
||||
LOCAL_SRC_FILES := $(pcre_src_files)
|
||||
LOCAL_CFLAGS := $(regal_cflags) -DHAVE_CONFIG_H=1 -DPCRE_STATIC=1
|
||||
LOCAL_C_INCLUDES := $(pcre_c_includes)
|
||||
LOCAL_EXPORT_LDLIBS :=
|
||||
LOCAL_ARM_MODE := arm
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := Regal_static
|
||||
LOCAL_SRC_FILES := $(regal_src_files)
|
||||
LOCAL_CFLAGS := $(regal_cflags)
|
||||
LOCAL_C_INCLUDES := $(regal_c_includes)
|
||||
LOCAL_EXPORT_C_INCLUDES := $(regal_export_c_includes)
|
||||
LOCAL_STATIC_LIBRARIES := glslopt pcre
|
||||
LOCAL_EXPORT_LDLIBS := -llog
|
||||
LOCAL_ARM_MODE := arm
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
|
@ -189,7 +142,6 @@ LOCAL_CFLAGS := $(regal_cflags)
|
|||
LOCAL_C_INCLUDES := $(regal_c_includes)
|
||||
LOCAL_EXPORT_C_INCLUDES := $(regal_export_c_includes)
|
||||
LOCAL_STATIC_LIBRARIES := apitrace zlib snappy
|
||||
LOCAL_STATIC_LIBRARIES += glslopt pcre
|
||||
LOCAL_LDLIBS := -llog
|
||||
LOCAL_EXPORT_LDLIBS := -llog
|
||||
LOCAL_ARM_MODE := arm
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
#seth: need to specify this manually to get the latest
|
||||
NDK_TOOLCHAIN_VERSION := 4.8
|
||||
|
||||
APP_MODULES := Regal_static Regal
|
||||
APP_STL := stlport_static
|
||||
APP_PLATFORM := android-9
|
||||
|
||||
ifndef APP_OPTIM
|
||||
ifeq ($(NDK_DEBUG),1)
|
||||
$(warning NDK_DEBUG set, enabling debug build: APP_OPTIM := debug)
|
||||
$(warning NDK_DEBUG set, enabling debug build.)
|
||||
APP_OPTIM := debug
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -5,11 +5,8 @@
|
|||
|
||||
# apitrace sources
|
||||
|
||||
APITRACE.CXX :=
|
||||
APITRACE.CXX += src/apitrace/common/highlight.cpp
|
||||
APITRACE.CXX += src/apitrace/common/os_posix.cpp
|
||||
APITRACE.CXX += src/apitrace/common/os_win32.cpp
|
||||
APITRACE.CXX += src/apitrace/common/os_backtrace.cpp
|
||||
APITRACE.CXX += src/apitrace/common/trace_callset.cpp
|
||||
APITRACE.CXX += src/apitrace/common/trace_fast_callset.cpp
|
||||
APITRACE.CXX += src/apitrace/common/trace_dump.cpp
|
||||
|
|
@ -28,13 +25,14 @@ APITRACE.CXX += src/apitrace/common/trace_profiler.cpp
|
|||
APITRACE.CXX += src/apitrace/common/trace_writer_regal.cpp
|
||||
APITRACE.CXX += src/apitrace/common/trace_writer_model.cpp
|
||||
APITRACE.CXX += src/apitrace/common/trace_writer.cpp
|
||||
APITRACE.CXX += src/apitrace/common/trace_backtrace.cpp
|
||||
APITRACE.CXX += src/apitrace/dispatch/glproc_regal.cpp
|
||||
#APITRACE.CXX += src/apitrace/dispatch/glproc_egl.cpp
|
||||
#APITRACE.CXX += src/apitrace/dispatch/glproc_gl.cpp
|
||||
APITRACE.CXX += src/apitrace/helpers/eglsize.cpp
|
||||
APITRACE.CXX += src/apitrace/wrappers/dlsym.cpp
|
||||
APITRACE.CXX += src/apitrace/wrappers/glcaps.cpp
|
||||
APITRACE.CXX += src/apitrace/wrappers/gltrace_state.cpp
|
||||
APITRACE.CXX += src/apitrace/wrappers/trace.cpp
|
||||
APITRACE.CXX += src/apitrace/wrappers/regaltrace.cpp
|
||||
|
||||
#
|
||||
|
|
@ -42,6 +40,6 @@ APITRACE.CXX += src/apitrace/wrappers/regaltrace.cpp
|
|||
APITRACE.CFLAGS := -Isrc/apitrace/common -Isrc/apitrace/dispatch -Isrc/apitrace/helpers -Isrc/apitrace/wrappers -Isrc/apitrace
|
||||
APITRACE.CFLAGS += -Isrc/apitrace/thirdparty/khronos
|
||||
APITRACE.CFLAGS += -Isrc/regal -Isrc/snappy -Isrc/zlib/include -Isrc/zlib/src -Isrc/boost
|
||||
APITRACE.CFLAGS += -DHAVE_EXTERNAL_OS_LOG=1 -DHAVE_BACKTRACE=0 -DTRACE_ENABLED_CHECK=0
|
||||
APITRACE.CFLAGS += -DTRACE_OS_LOG=0 -DTRACE_BACKTRACE=0 -DTRACE_ENABLED_CHECK=0
|
||||
|
||||
APITRACE.STATIC := libapitrace.a
|
||||
|
|
|
|||
|
|
@ -34,8 +34,6 @@ STRIP ?= strip
|
|||
RM ?= rm -f
|
||||
LN ?= ln -sf
|
||||
CXX ?= $(CC)
|
||||
CP ?= cp -f
|
||||
MKDIR ?= mkdir -p
|
||||
|
||||
# Release mode is the default
|
||||
|
||||
|
|
@ -53,15 +51,12 @@ OPT ?= $(CFLAGS.RELEASE)
|
|||
endif
|
||||
|
||||
ifndef V
|
||||
LOG_CXX ?= @echo " [CXX] $@";
|
||||
LOG_CC ?= @echo " [CC] $@";
|
||||
LOG_LD ?= @echo " [LD] $@";
|
||||
LOG_AR ?= @echo " [AR] $@";
|
||||
LOG_CXX ?= @echo " [CXX] $@";
|
||||
LOG_CC ?= @echo " [CC] $@";
|
||||
LOG_LD ?= @echo " [LD] $@";
|
||||
LOG_AR ?= @echo " [AR] $@";
|
||||
LOG_RANLIB ?= @echo " [RANLIB] $@";
|
||||
LOG_STRIP ?= @echo " [STRIP] $@";
|
||||
LOG_LN ?= @echo " [LN] $@";
|
||||
LOG_CP ?= @echo " [CP] $@";
|
||||
LOG_MKDIR ?= @echo " [MKDIR] $@";
|
||||
LOG_STRIP ?= @echo " [STRIP] $@";
|
||||
endif
|
||||
|
||||
INCLUDE ?= -Iinclude
|
||||
|
|
|
|||
|
|
@ -1,36 +0,0 @@
|
|||
# expat.inc
|
||||
#
|
||||
# Generic gnumake .inc for building expat support into Regal
|
||||
# http://expat.sourceforge.net/
|
||||
#
|
||||
|
||||
# expat sources
|
||||
|
||||
EXPAT.C :=
|
||||
EXPAT.C += src/expat/src/xmlparse.c
|
||||
EXPAT.C += src/expat/src/xmlrole.c
|
||||
EXPAT.C += src/expat/src/xmltok.c
|
||||
|
||||
EXPAT.H :=
|
||||
EXPAT.H += src/expat/src/amigaconfig.h
|
||||
EXPAT.H += src/expat/src/ascii.h
|
||||
EXPAT.H += src/expat/src/asciitab.h
|
||||
EXPAT.H += src/expat/src/iasciitab.h
|
||||
EXPAT.H += src/expat/src/internal.h
|
||||
EXPAT.H += src/expat/src/latin1tab.h
|
||||
EXPAT.H += src/expat/src/macconfig.h
|
||||
EXPAT.H += src/expat/src/nametab.h
|
||||
EXPAT.H += src/expat/src/utf8tab.h
|
||||
EXPAT.H += src/expat/src/winconfig.h
|
||||
EXPAT.H += src/expat/src/xmlrole.h
|
||||
EXPAT.H += src/expat/src/xmltok.h
|
||||
EXPAT.H += src/expat/src/xmltok_impl.h
|
||||
|
||||
EXPAT.H.OTHER :=
|
||||
EXPAT.H.OTHER += src/expat/include/expat.h
|
||||
EXPAT.H.OTHER += src/expat/include/expat_external.h
|
||||
|
||||
#
|
||||
|
||||
EXPAT.CFLAGS := -Isrc/src/expat/include -Isrc/expat/src
|
||||
EXPAT.STATIC := libexpat.a
|
||||
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
# freetype sources
|
||||
|
||||
FREETYPE.C :=
|
||||
FREETYPE.C += src/freetype/src/raster/rastpic.c
|
||||
FREETYPE.C += src/freetype/src/raster/ftrend1.c
|
||||
FREETYPE.C += src/freetype/src/raster/ftraster.c
|
||||
|
|
@ -142,15 +141,6 @@ FREETYPE.C += src/freetype/src/cff/cffpic.c
|
|||
FREETYPE.C += src/freetype/src/cff/cffcmap.c
|
||||
FREETYPE.C += src/freetype/src/cff/cffload.c
|
||||
FREETYPE.C += src/freetype/src/cff/cffobjs.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2ft.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2font.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2blues.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2intrp.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2error.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2read.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2stack.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2arrst.c
|
||||
FREETYPE.C += src/freetype/src/cff/cf2hints.c
|
||||
FREETYPE.C += src/freetype/src/truetype/ttgxvar.c
|
||||
FREETYPE.C += src/freetype/src/truetype/ttinterp.c
|
||||
FREETYPE.C += src/freetype/src/truetype/ttobjs.c
|
||||
|
|
@ -209,4 +199,4 @@ FREETYPE.C += src/freetype/src/autofit/autofit.c
|
|||
|
||||
FREETYPE.H :=
|
||||
|
||||
FREETYPE.H.OTHER :=
|
||||
FREETYPE.H.OTHER :=
|
||||
|
|
|
|||
|
|
@ -1,114 +0,0 @@
|
|||
# glslopt.inc
|
||||
#
|
||||
# Generic gnumake .inc for building GLSL Optimizer
|
||||
#
|
||||
|
||||
# Sources
|
||||
|
||||
GLSLOPT.CXX :=
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ast_array_index.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ast_expr.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ast_function.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ast_to_hir.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ast_type.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/builtin_function.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/builtin_variables.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glsl_lexer.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glsl_optimizer.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glsl_parser.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glsl_parser_extras.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glsl_symbol_table.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glsl_types.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/hir_field_selection.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_basic_block.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_builder.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_clone.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_constant_expression.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_expression_flattening.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_function.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_function_can_inline.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_function_detect_recursion.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_hierarchical_visitor.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_hv_accept.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_import_prototypes.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_print_glsl_visitor.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_print_visitor.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_reader.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_rvalue_visitor.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_unused_structs.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_validate.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ir_variable_refcount.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/link_functions.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/link_uniform_block_active_visitor.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/link_uniform_blocks.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/link_uniform_initializers.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/link_uniforms.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/link_varyings.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/linker.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/loop_analysis.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/loop_controls.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/loop_unroll.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_clip_distance.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_discard.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_discard_flow.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_if_to_cond_assign.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_instructions.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_jumps.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_mat_op_to_vec.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_noise.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_packed_varyings.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_variable_index_to_cond_assign.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_vec_index_to_cond_assign.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_vec_index_to_swizzle.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/lower_vector.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_algebraic.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_array_splitting.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_constant_folding.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_constant_propagation.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_constant_variable.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_copy_propagation.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_copy_propagation_elements.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_dead_code.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_dead_code_local.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_dead_functions.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_flatten_nested_if_blocks.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_function_inlining.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_if_simplification.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_noop_swizzle.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_redundant_jumps.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_structure_splitting.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_swizzle_swizzle.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/opt_tree_grafting.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/ralloc.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/s_expression.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/standalone_scaffolding.cpp
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/strtod.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glcpp/glcpp-lex.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glcpp/glcpp-parse.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/glcpp/pp.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/../mesa/main/imports.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/../mesa/main/hash_table.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/../mesa/program/symbol_table.c
|
||||
GLSLOPT.CXX += src/glsl/src/glsl/../mesa/program/prog_hash_table.c
|
||||
|
||||
# Internal Headers
|
||||
GLSLOPT.H :=
|
||||
|
||||
# Other Headers
|
||||
GLSLOPT.H.OTHER :=
|
||||
|
||||
#
|
||||
# Includes
|
||||
#
|
||||
|
||||
GLSLOPT.INCLUDE :=
|
||||
GLSLOPT.INCLUDE += -Isrc/glsl/include
|
||||
GLSLOPT.INCLUDE += -Isrc/glsl/src/glsl
|
||||
GLSLOPT.INCLUDE += -Isrc/glsl/src/mesa
|
||||
|
||||
ifeq ($(PROFILE_OS),Windows)
|
||||
GLSLOPT.INCLUDES += -Isrc/glsl/include/c99
|
||||
endif
|
||||
|
||||
GLSLOPT.STATIC ?= libglslopt.a
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
# Sources
|
||||
|
||||
LIBPNG.C :=
|
||||
LIBPNG.C += src/libpng/src/png.c
|
||||
LIBPNG.C += src/libpng/src/pngerror.c
|
||||
LIBPNG.C += src/libpng/src/pngget.c
|
||||
|
|
@ -22,9 +21,6 @@ LIBPNG.C += src/libpng/src/pngwrite.c
|
|||
LIBPNG.C += src/libpng/src/pngwtran.c
|
||||
LIBPNG.C += src/libpng/src/pngwutil.c
|
||||
|
||||
LIBPNG_ARM.C += src/libpng/src/arm/arm_init.c
|
||||
LIBPNG.S += src/libpng/src/arm/filter_neon.S
|
||||
|
||||
#
|
||||
|
||||
LIBPNG.STATIC := libpnglib.a
|
||||
|
|
|
|||
|
|
@ -1,29 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>OpenGL</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>NVIDIA OpenGL Regal Framework 1.0</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.nvidia.Regal</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>NVIDIA OpenGL Regal Framework</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2011-2014 NVIDIA Corporation. All rights reserved.</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,450 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
43777CE617DBF46700EA874E /* eglsize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CB117DBF46700EA874E /* eglsize.cpp */; };
|
||||
43777CE717DBF46700EA874E /* eglsize.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CB217DBF46700EA874E /* eglsize.hpp */; };
|
||||
43777CE817DBF46700EA874E /* glsize.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CB317DBF46700EA874E /* glsize.hpp */; };
|
||||
43777CE917DBF46700EA874E /* glcaps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CB417DBF46700EA874E /* glcaps.cpp */; };
|
||||
43777CEA17DBF46700EA874E /* gltrace_state.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CB517DBF46700EA874E /* gltrace_state.cpp */; };
|
||||
43777CEB17DBF46700EA874E /* regaltrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CB617DBF46700EA874E /* regaltrace.cpp */; };
|
||||
43777CEE17DBF46700EA874E /* glproc_regal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CB917DBF46700EA874E /* glproc_regal.cpp */; };
|
||||
43777CEF17DBF46700EA874E /* glproc.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CBA17DBF46700EA874E /* glproc.hpp */; };
|
||||
43777CF017DBF46700EA874E /* formatter.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CBB17DBF46700EA874E /* formatter.hpp */; };
|
||||
43777CF117DBF46700EA874E /* os_binary.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CBC17DBF46700EA874E /* os_binary.hpp */; };
|
||||
43777CF217DBF46700EA874E /* os_dl.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CBD17DBF46700EA874E /* os_dl.hpp */; };
|
||||
43777CF317DBF46700EA874E /* os_memory.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CBE17DBF46700EA874E /* os_memory.hpp */; };
|
||||
43777CF417DBF46700EA874E /* os_posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CBF17DBF46700EA874E /* os_posix.cpp */; };
|
||||
43777CF517DBF46700EA874E /* os_process.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CC017DBF46700EA874E /* os_process.hpp */; };
|
||||
43777CF617DBF46700EA874E /* os_string.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CC117DBF46700EA874E /* os_string.hpp */; };
|
||||
43777CF717DBF46700EA874E /* os_thread.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CC217DBF46700EA874E /* os_thread.hpp */; };
|
||||
43777CF817DBF46700EA874E /* os_time.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CC317DBF46700EA874E /* os_time.hpp */; };
|
||||
43777CF917DBF46700EA874E /* os_win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CC417DBF46700EA874E /* os_win32.cpp */; };
|
||||
43777CFA17DBF46700EA874E /* os.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CC517DBF46700EA874E /* os.hpp */; };
|
||||
43777CFB17DBF46700EA874E /* trace_api.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CC617DBF46700EA874E /* trace_api.hpp */; };
|
||||
43777CFE17DBF46700EA874E /* trace_callset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CC917DBF46700EA874E /* trace_callset.cpp */; };
|
||||
43777CFF17DBF46700EA874E /* trace_callset.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CCA17DBF46700EA874E /* trace_callset.hpp */; };
|
||||
43777D0017DBF46700EA874E /* trace_dump.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CCB17DBF46700EA874E /* trace_dump.cpp */; };
|
||||
43777D0117DBF46700EA874E /* trace_dump.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CCC17DBF46700EA874E /* trace_dump.hpp */; };
|
||||
43777D0217DBF46700EA874E /* trace_fast_callset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CCD17DBF46700EA874E /* trace_fast_callset.cpp */; };
|
||||
43777D0317DBF46700EA874E /* trace_fast_callset.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CCE17DBF46700EA874E /* trace_fast_callset.hpp */; };
|
||||
43777D0417DBF46700EA874E /* trace_file_read.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CCF17DBF46700EA874E /* trace_file_read.cpp */; };
|
||||
43777D0517DBF46700EA874E /* trace_file_snappy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CD017DBF46700EA874E /* trace_file_snappy.cpp */; };
|
||||
43777D0617DBF46700EA874E /* trace_file_write.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CD117DBF46700EA874E /* trace_file_write.cpp */; };
|
||||
43777D0717DBF46700EA874E /* trace_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CD217DBF46700EA874E /* trace_file.cpp */; };
|
||||
43777D0817DBF46700EA874E /* trace_file.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CD317DBF46700EA874E /* trace_file.hpp */; };
|
||||
43777D0917DBF46700EA874E /* trace_format.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CD417DBF46700EA874E /* trace_format.hpp */; };
|
||||
43777D0A17DBF46700EA874E /* trace_loader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CD517DBF46700EA874E /* trace_loader.cpp */; };
|
||||
43777D0B17DBF46700EA874E /* trace_loader.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CD617DBF46700EA874E /* trace_loader.hpp */; };
|
||||
43777D0C17DBF46700EA874E /* trace_lookup.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CD717DBF46700EA874E /* trace_lookup.hpp */; };
|
||||
43777D0D17DBF46700EA874E /* trace_model.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CD817DBF46700EA874E /* trace_model.cpp */; };
|
||||
43777D0E17DBF46700EA874E /* trace_model.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CD917DBF46700EA874E /* trace_model.hpp */; };
|
||||
43777D0F17DBF46700EA874E /* trace_option.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CDA17DBF46700EA874E /* trace_option.cpp */; };
|
||||
43777D1017DBF46700EA874E /* trace_option.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CDB17DBF46700EA874E /* trace_option.hpp */; };
|
||||
43777D1117DBF46700EA874E /* trace_parser_flags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CDC17DBF46700EA874E /* trace_parser_flags.cpp */; };
|
||||
43777D1217DBF46700EA874E /* trace_parser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CDD17DBF46700EA874E /* trace_parser.cpp */; };
|
||||
43777D1317DBF46700EA874E /* trace_parser.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CDE17DBF46700EA874E /* trace_parser.hpp */; };
|
||||
43777D1417DBF46700EA874E /* trace_profiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CDF17DBF46700EA874E /* trace_profiler.cpp */; };
|
||||
43777D1517DBF46700EA874E /* trace_profiler.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CE017DBF46700EA874E /* trace_profiler.hpp */; };
|
||||
43777D1617DBF46700EA874E /* trace_writer_model.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CE117DBF46700EA874E /* trace_writer_model.cpp */; };
|
||||
43777D1717DBF46700EA874E /* trace_writer_regal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CE217DBF46700EA874E /* trace_writer_regal.cpp */; };
|
||||
43777D1817DBF46700EA874E /* trace_writer_regal.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CE317DBF46700EA874E /* trace_writer_regal.hpp */; };
|
||||
43777D1917DBF46700EA874E /* trace_writer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43777CE417DBF46700EA874E /* trace_writer.cpp */; };
|
||||
43777D1A17DBF46700EA874E /* trace_writer.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 43777CE517DBF46700EA874E /* trace_writer.hpp */; };
|
||||
BC3A59C11804695A00992687 /* os_backtrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC3A59BF1804695A00992687 /* os_backtrace.cpp */; };
|
||||
BC3A59C21804695A00992687 /* os_backtrace.hpp in Headers */ = {isa = PBXBuildFile; fileRef = BC3A59C01804695A00992687 /* os_backtrace.hpp */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
433667A917C56F3500D45AD9 /* libapitrace.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libapitrace.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
43777CB117DBF46700EA874E /* eglsize.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = eglsize.cpp; path = ../../../src/apitrace/helpers/eglsize.cpp; sourceTree = "<group>"; };
|
||||
43777CB217DBF46700EA874E /* eglsize.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = eglsize.hpp; path = ../../../src/apitrace/helpers/eglsize.hpp; sourceTree = "<group>"; };
|
||||
43777CB317DBF46700EA874E /* glsize.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = glsize.hpp; path = ../../../src/apitrace/helpers/glsize.hpp; sourceTree = "<group>"; };
|
||||
43777CB417DBF46700EA874E /* glcaps.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = glcaps.cpp; path = ../../../src/apitrace/wrappers/glcaps.cpp; sourceTree = "<group>"; };
|
||||
43777CB517DBF46700EA874E /* gltrace_state.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = gltrace_state.cpp; path = ../../../src/apitrace/wrappers/gltrace_state.cpp; sourceTree = "<group>"; };
|
||||
43777CB617DBF46700EA874E /* regaltrace.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = regaltrace.cpp; path = ../../../src/apitrace/wrappers/regaltrace.cpp; sourceTree = "<group>"; };
|
||||
43777CB917DBF46700EA874E /* glproc_regal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = glproc_regal.cpp; path = ../../../src/apitrace/dispatch/glproc_regal.cpp; sourceTree = "<group>"; };
|
||||
43777CBA17DBF46700EA874E /* glproc.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = glproc.hpp; path = ../../../src/apitrace/dispatch/glproc.hpp; sourceTree = "<group>"; };
|
||||
43777CBB17DBF46700EA874E /* formatter.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = formatter.hpp; path = ../../../src/apitrace/common/formatter.hpp; sourceTree = "<group>"; };
|
||||
43777CBC17DBF46700EA874E /* os_binary.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_binary.hpp; path = ../../../src/apitrace/common/os_binary.hpp; sourceTree = "<group>"; };
|
||||
43777CBD17DBF46700EA874E /* os_dl.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_dl.hpp; path = ../../../src/apitrace/common/os_dl.hpp; sourceTree = "<group>"; };
|
||||
43777CBE17DBF46700EA874E /* os_memory.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_memory.hpp; path = ../../../src/apitrace/common/os_memory.hpp; sourceTree = "<group>"; };
|
||||
43777CBF17DBF46700EA874E /* os_posix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = os_posix.cpp; path = ../../../src/apitrace/common/os_posix.cpp; sourceTree = "<group>"; };
|
||||
43777CC017DBF46700EA874E /* os_process.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_process.hpp; path = ../../../src/apitrace/common/os_process.hpp; sourceTree = "<group>"; };
|
||||
43777CC117DBF46700EA874E /* os_string.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_string.hpp; path = ../../../src/apitrace/common/os_string.hpp; sourceTree = "<group>"; };
|
||||
43777CC217DBF46700EA874E /* os_thread.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_thread.hpp; path = ../../../src/apitrace/common/os_thread.hpp; sourceTree = "<group>"; };
|
||||
43777CC317DBF46700EA874E /* os_time.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_time.hpp; path = ../../../src/apitrace/common/os_time.hpp; sourceTree = "<group>"; };
|
||||
43777CC417DBF46700EA874E /* os_win32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = os_win32.cpp; path = ../../../src/apitrace/common/os_win32.cpp; sourceTree = "<group>"; };
|
||||
43777CC517DBF46700EA874E /* os.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os.hpp; path = ../../../src/apitrace/common/os.hpp; sourceTree = "<group>"; };
|
||||
43777CC617DBF46700EA874E /* trace_api.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_api.hpp; path = ../../../src/apitrace/common/trace_api.hpp; sourceTree = "<group>"; };
|
||||
43777CC917DBF46700EA874E /* trace_callset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_callset.cpp; path = ../../../src/apitrace/common/trace_callset.cpp; sourceTree = "<group>"; };
|
||||
43777CCA17DBF46700EA874E /* trace_callset.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_callset.hpp; path = ../../../src/apitrace/common/trace_callset.hpp; sourceTree = "<group>"; };
|
||||
43777CCB17DBF46700EA874E /* trace_dump.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_dump.cpp; path = ../../../src/apitrace/common/trace_dump.cpp; sourceTree = "<group>"; };
|
||||
43777CCC17DBF46700EA874E /* trace_dump.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_dump.hpp; path = ../../../src/apitrace/common/trace_dump.hpp; sourceTree = "<group>"; };
|
||||
43777CCD17DBF46700EA874E /* trace_fast_callset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_fast_callset.cpp; path = ../../../src/apitrace/common/trace_fast_callset.cpp; sourceTree = "<group>"; };
|
||||
43777CCE17DBF46700EA874E /* trace_fast_callset.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_fast_callset.hpp; path = ../../../src/apitrace/common/trace_fast_callset.hpp; sourceTree = "<group>"; };
|
||||
43777CCF17DBF46700EA874E /* trace_file_read.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_file_read.cpp; path = ../../../src/apitrace/common/trace_file_read.cpp; sourceTree = "<group>"; };
|
||||
43777CD017DBF46700EA874E /* trace_file_snappy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_file_snappy.cpp; path = ../../../src/apitrace/common/trace_file_snappy.cpp; sourceTree = "<group>"; };
|
||||
43777CD117DBF46700EA874E /* trace_file_write.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_file_write.cpp; path = ../../../src/apitrace/common/trace_file_write.cpp; sourceTree = "<group>"; };
|
||||
43777CD217DBF46700EA874E /* trace_file.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_file.cpp; path = ../../../src/apitrace/common/trace_file.cpp; sourceTree = "<group>"; };
|
||||
43777CD317DBF46700EA874E /* trace_file.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_file.hpp; path = ../../../src/apitrace/common/trace_file.hpp; sourceTree = "<group>"; };
|
||||
43777CD417DBF46700EA874E /* trace_format.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_format.hpp; path = ../../../src/apitrace/common/trace_format.hpp; sourceTree = "<group>"; };
|
||||
43777CD517DBF46700EA874E /* trace_loader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_loader.cpp; path = ../../../src/apitrace/common/trace_loader.cpp; sourceTree = "<group>"; };
|
||||
43777CD617DBF46700EA874E /* trace_loader.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_loader.hpp; path = ../../../src/apitrace/common/trace_loader.hpp; sourceTree = "<group>"; };
|
||||
43777CD717DBF46700EA874E /* trace_lookup.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_lookup.hpp; path = ../../../src/apitrace/common/trace_lookup.hpp; sourceTree = "<group>"; };
|
||||
43777CD817DBF46700EA874E /* trace_model.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_model.cpp; path = ../../../src/apitrace/common/trace_model.cpp; sourceTree = "<group>"; };
|
||||
43777CD917DBF46700EA874E /* trace_model.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_model.hpp; path = ../../../src/apitrace/common/trace_model.hpp; sourceTree = "<group>"; };
|
||||
43777CDA17DBF46700EA874E /* trace_option.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_option.cpp; path = ../../../src/apitrace/common/trace_option.cpp; sourceTree = "<group>"; };
|
||||
43777CDB17DBF46700EA874E /* trace_option.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_option.hpp; path = ../../../src/apitrace/common/trace_option.hpp; sourceTree = "<group>"; };
|
||||
43777CDC17DBF46700EA874E /* trace_parser_flags.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_parser_flags.cpp; path = ../../../src/apitrace/common/trace_parser_flags.cpp; sourceTree = "<group>"; };
|
||||
43777CDD17DBF46700EA874E /* trace_parser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_parser.cpp; path = ../../../src/apitrace/common/trace_parser.cpp; sourceTree = "<group>"; };
|
||||
43777CDE17DBF46700EA874E /* trace_parser.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_parser.hpp; path = ../../../src/apitrace/common/trace_parser.hpp; sourceTree = "<group>"; };
|
||||
43777CDF17DBF46700EA874E /* trace_profiler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_profiler.cpp; path = ../../../src/apitrace/common/trace_profiler.cpp; sourceTree = "<group>"; };
|
||||
43777CE017DBF46700EA874E /* trace_profiler.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_profiler.hpp; path = ../../../src/apitrace/common/trace_profiler.hpp; sourceTree = "<group>"; };
|
||||
43777CE117DBF46700EA874E /* trace_writer_model.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_writer_model.cpp; path = ../../../src/apitrace/common/trace_writer_model.cpp; sourceTree = "<group>"; };
|
||||
43777CE217DBF46700EA874E /* trace_writer_regal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_writer_regal.cpp; path = ../../../src/apitrace/common/trace_writer_regal.cpp; sourceTree = "<group>"; };
|
||||
43777CE317DBF46700EA874E /* trace_writer_regal.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_writer_regal.hpp; path = ../../../src/apitrace/common/trace_writer_regal.hpp; sourceTree = "<group>"; };
|
||||
43777CE417DBF46700EA874E /* trace_writer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trace_writer.cpp; path = ../../../src/apitrace/common/trace_writer.cpp; sourceTree = "<group>"; };
|
||||
43777CE517DBF46700EA874E /* trace_writer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = trace_writer.hpp; path = ../../../src/apitrace/common/trace_writer.hpp; sourceTree = "<group>"; };
|
||||
BC3A59BF1804695A00992687 /* os_backtrace.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = os_backtrace.cpp; path = ../../../src/apitrace/common/os_backtrace.cpp; sourceTree = "<group>"; };
|
||||
BC3A59C01804695A00992687 /* os_backtrace.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = os_backtrace.hpp; path = ../../../src/apitrace/common/os_backtrace.hpp; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
433667A617C56F3500D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
433667A017C56F3500D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433667B017C56F4D00D45AD9 /* src */,
|
||||
433667AA17C56F3500D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
433667AA17C56F3500D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433667A917C56F3500D45AD9 /* libapitrace.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
433667B017C56F4D00D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
BC3A59BF1804695A00992687 /* os_backtrace.cpp */,
|
||||
BC3A59C01804695A00992687 /* os_backtrace.hpp */,
|
||||
43777CB117DBF46700EA874E /* eglsize.cpp */,
|
||||
43777CB217DBF46700EA874E /* eglsize.hpp */,
|
||||
43777CB317DBF46700EA874E /* glsize.hpp */,
|
||||
43777CB417DBF46700EA874E /* glcaps.cpp */,
|
||||
43777CB517DBF46700EA874E /* gltrace_state.cpp */,
|
||||
43777CB617DBF46700EA874E /* regaltrace.cpp */,
|
||||
43777CB917DBF46700EA874E /* glproc_regal.cpp */,
|
||||
43777CBA17DBF46700EA874E /* glproc.hpp */,
|
||||
43777CBB17DBF46700EA874E /* formatter.hpp */,
|
||||
43777CBC17DBF46700EA874E /* os_binary.hpp */,
|
||||
43777CBD17DBF46700EA874E /* os_dl.hpp */,
|
||||
43777CBE17DBF46700EA874E /* os_memory.hpp */,
|
||||
43777CBF17DBF46700EA874E /* os_posix.cpp */,
|
||||
43777CC017DBF46700EA874E /* os_process.hpp */,
|
||||
43777CC117DBF46700EA874E /* os_string.hpp */,
|
||||
43777CC217DBF46700EA874E /* os_thread.hpp */,
|
||||
43777CC317DBF46700EA874E /* os_time.hpp */,
|
||||
43777CC417DBF46700EA874E /* os_win32.cpp */,
|
||||
43777CC517DBF46700EA874E /* os.hpp */,
|
||||
43777CC617DBF46700EA874E /* trace_api.hpp */,
|
||||
43777CC917DBF46700EA874E /* trace_callset.cpp */,
|
||||
43777CCA17DBF46700EA874E /* trace_callset.hpp */,
|
||||
43777CCB17DBF46700EA874E /* trace_dump.cpp */,
|
||||
43777CCC17DBF46700EA874E /* trace_dump.hpp */,
|
||||
43777CCD17DBF46700EA874E /* trace_fast_callset.cpp */,
|
||||
43777CCE17DBF46700EA874E /* trace_fast_callset.hpp */,
|
||||
43777CCF17DBF46700EA874E /* trace_file_read.cpp */,
|
||||
43777CD017DBF46700EA874E /* trace_file_snappy.cpp */,
|
||||
43777CD117DBF46700EA874E /* trace_file_write.cpp */,
|
||||
43777CD217DBF46700EA874E /* trace_file.cpp */,
|
||||
43777CD317DBF46700EA874E /* trace_file.hpp */,
|
||||
43777CD417DBF46700EA874E /* trace_format.hpp */,
|
||||
43777CD517DBF46700EA874E /* trace_loader.cpp */,
|
||||
43777CD617DBF46700EA874E /* trace_loader.hpp */,
|
||||
43777CD717DBF46700EA874E /* trace_lookup.hpp */,
|
||||
43777CD817DBF46700EA874E /* trace_model.cpp */,
|
||||
43777CD917DBF46700EA874E /* trace_model.hpp */,
|
||||
43777CDA17DBF46700EA874E /* trace_option.cpp */,
|
||||
43777CDB17DBF46700EA874E /* trace_option.hpp */,
|
||||
43777CDC17DBF46700EA874E /* trace_parser_flags.cpp */,
|
||||
43777CDD17DBF46700EA874E /* trace_parser.cpp */,
|
||||
43777CDE17DBF46700EA874E /* trace_parser.hpp */,
|
||||
43777CDF17DBF46700EA874E /* trace_profiler.cpp */,
|
||||
43777CE017DBF46700EA874E /* trace_profiler.hpp */,
|
||||
43777CE117DBF46700EA874E /* trace_writer_model.cpp */,
|
||||
43777CE217DBF46700EA874E /* trace_writer_regal.cpp */,
|
||||
43777CE317DBF46700EA874E /* trace_writer_regal.hpp */,
|
||||
43777CE417DBF46700EA874E /* trace_writer.cpp */,
|
||||
43777CE517DBF46700EA874E /* trace_writer.hpp */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
433667A717C56F3500D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
43777CE717DBF46700EA874E /* eglsize.hpp in Headers */,
|
||||
43777CE817DBF46700EA874E /* glsize.hpp in Headers */,
|
||||
43777CEF17DBF46700EA874E /* glproc.hpp in Headers */,
|
||||
43777CF017DBF46700EA874E /* formatter.hpp in Headers */,
|
||||
43777CF117DBF46700EA874E /* os_binary.hpp in Headers */,
|
||||
43777CF217DBF46700EA874E /* os_dl.hpp in Headers */,
|
||||
43777CF317DBF46700EA874E /* os_memory.hpp in Headers */,
|
||||
43777CF517DBF46700EA874E /* os_process.hpp in Headers */,
|
||||
43777CF617DBF46700EA874E /* os_string.hpp in Headers */,
|
||||
43777CF717DBF46700EA874E /* os_thread.hpp in Headers */,
|
||||
43777CF817DBF46700EA874E /* os_time.hpp in Headers */,
|
||||
43777CFA17DBF46700EA874E /* os.hpp in Headers */,
|
||||
43777CFB17DBF46700EA874E /* trace_api.hpp in Headers */,
|
||||
43777CFF17DBF46700EA874E /* trace_callset.hpp in Headers */,
|
||||
43777D0117DBF46700EA874E /* trace_dump.hpp in Headers */,
|
||||
43777D0317DBF46700EA874E /* trace_fast_callset.hpp in Headers */,
|
||||
43777D0817DBF46700EA874E /* trace_file.hpp in Headers */,
|
||||
43777D0917DBF46700EA874E /* trace_format.hpp in Headers */,
|
||||
43777D0B17DBF46700EA874E /* trace_loader.hpp in Headers */,
|
||||
43777D0C17DBF46700EA874E /* trace_lookup.hpp in Headers */,
|
||||
43777D0E17DBF46700EA874E /* trace_model.hpp in Headers */,
|
||||
43777D1017DBF46700EA874E /* trace_option.hpp in Headers */,
|
||||
43777D1317DBF46700EA874E /* trace_parser.hpp in Headers */,
|
||||
43777D1517DBF46700EA874E /* trace_profiler.hpp in Headers */,
|
||||
43777D1817DBF46700EA874E /* trace_writer_regal.hpp in Headers */,
|
||||
43777D1A17DBF46700EA874E /* trace_writer.hpp in Headers */,
|
||||
BC3A59C21804695A00992687 /* os_backtrace.hpp in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
433667A817C56F3500D45AD9 /* apitrace */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 433667AD17C56F3500D45AD9 /* Build configuration list for PBXNativeTarget "apitrace" */;
|
||||
buildPhases = (
|
||||
433667A517C56F3500D45AD9 /* Sources */,
|
||||
433667A617C56F3500D45AD9 /* Frameworks */,
|
||||
433667A717C56F3500D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = apitrace;
|
||||
productName = apitrace;
|
||||
productReference = 433667A917C56F3500D45AD9 /* libapitrace.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
433667A117C56F3500D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 433667A417C56F3500D45AD9 /* Build configuration list for PBXProject "apitrace" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 433667A017C56F3500D45AD9;
|
||||
productRefGroup = 433667AA17C56F3500D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
433667A817C56F3500D45AD9 /* apitrace */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
433667A517C56F3500D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
43777CE617DBF46700EA874E /* eglsize.cpp in Sources */,
|
||||
43777CE917DBF46700EA874E /* glcaps.cpp in Sources */,
|
||||
43777CEA17DBF46700EA874E /* gltrace_state.cpp in Sources */,
|
||||
43777CEB17DBF46700EA874E /* regaltrace.cpp in Sources */,
|
||||
43777CEE17DBF46700EA874E /* glproc_regal.cpp in Sources */,
|
||||
43777CF417DBF46700EA874E /* os_posix.cpp in Sources */,
|
||||
43777CF917DBF46700EA874E /* os_win32.cpp in Sources */,
|
||||
43777CFE17DBF46700EA874E /* trace_callset.cpp in Sources */,
|
||||
43777D0017DBF46700EA874E /* trace_dump.cpp in Sources */,
|
||||
43777D0217DBF46700EA874E /* trace_fast_callset.cpp in Sources */,
|
||||
43777D0417DBF46700EA874E /* trace_file_read.cpp in Sources */,
|
||||
43777D0517DBF46700EA874E /* trace_file_snappy.cpp in Sources */,
|
||||
43777D0617DBF46700EA874E /* trace_file_write.cpp in Sources */,
|
||||
43777D0717DBF46700EA874E /* trace_file.cpp in Sources */,
|
||||
43777D0A17DBF46700EA874E /* trace_loader.cpp in Sources */,
|
||||
43777D0D17DBF46700EA874E /* trace_model.cpp in Sources */,
|
||||
43777D0F17DBF46700EA874E /* trace_option.cpp in Sources */,
|
||||
43777D1117DBF46700EA874E /* trace_parser_flags.cpp in Sources */,
|
||||
43777D1217DBF46700EA874E /* trace_parser.cpp in Sources */,
|
||||
43777D1417DBF46700EA874E /* trace_profiler.cpp in Sources */,
|
||||
43777D1617DBF46700EA874E /* trace_writer_model.cpp in Sources */,
|
||||
43777D1717DBF46700EA874E /* trace_writer_regal.cpp in Sources */,
|
||||
43777D1917DBF46700EA874E /* trace_writer.cpp in Sources */,
|
||||
BC3A59C11804695A00992687 /* os_backtrace.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
433667AB17C56F3500D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"HAVE_EXTERNAL_OS_LOG=1",
|
||||
"REGAL_PLUGIN=1",
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
../../../include,
|
||||
../../../src/snappy,
|
||||
../../../src/zlib/include,
|
||||
../../../src/zlib/src,
|
||||
../../../src/apitrace,
|
||||
../../../src/apitrace/common,
|
||||
../../../src/apitrace/dispatch,
|
||||
../../../src/apitrace/helpers,
|
||||
../../../src/apitrace/wrappers,
|
||||
../../../src/apitrace/thirdparty/khronos,
|
||||
../../../src/regal,
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.7;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = macosx10.7;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
433667AC17C56F3500D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"HAVE_EXTERNAL_OS_LOG=1",
|
||||
"REGAL_PLUGIN=1",
|
||||
);
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
../../../include,
|
||||
../../../src/snappy,
|
||||
../../../src/zlib/include,
|
||||
../../../src/zlib/src,
|
||||
../../../src/apitrace,
|
||||
../../../src/apitrace/common,
|
||||
../../../src/apitrace/dispatch,
|
||||
../../../src/apitrace/helpers,
|
||||
../../../src/apitrace/wrappers,
|
||||
../../../src/apitrace/thirdparty/khronos,
|
||||
../../../src/regal,
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.7;
|
||||
SDKROOT = macosx10.7;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
433667AE17C56F3500D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
433667AF17C56F3500D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
433667A417C56F3500D45AD9 /* Build configuration list for PBXProject "apitrace" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
433667AB17C56F3500D45AD9 /* Debug */,
|
||||
433667AC17C56F3500D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
433667AD17C56F3500D45AD9 /* Build configuration list for PBXNativeTarget "apitrace" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
433667AE17C56F3500D45AD9 /* Debug */,
|
||||
433667AF17C56F3500D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 433667A117C56F3500D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,222 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4336679E17C56F0B00D45AD9 /* jsonsl.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336679C17C56F0B00D45AD9 /* jsonsl.c */; };
|
||||
4336679F17C56F0B00D45AD9 /* jsonsl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336679D17C56F0B00D45AD9 /* jsonsl.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
4336679417C56EF900D45AD9 /* libjsonsl.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libjsonsl.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4336679C17C56F0B00D45AD9 /* jsonsl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = jsonsl.c; path = ../../../src/jsonsl/jsonsl.c; sourceTree = "<group>"; };
|
||||
4336679D17C56F0B00D45AD9 /* jsonsl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = jsonsl.h; path = ../../../src/jsonsl/jsonsl.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4336679117C56EF900D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4336678B17C56EF900D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336679B17C56EFE00D45AD9 /* src */,
|
||||
4336679517C56EF900D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336679517C56EF900D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336679417C56EF900D45AD9 /* libjsonsl.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336679B17C56EFE00D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336679C17C56F0B00D45AD9 /* jsonsl.c */,
|
||||
4336679D17C56F0B00D45AD9 /* jsonsl.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
4336679217C56EF900D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336679F17C56F0B00D45AD9 /* jsonsl.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4336679317C56EF900D45AD9 /* jsonsl */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4336679817C56EF900D45AD9 /* Build configuration list for PBXNativeTarget "jsonsl" */;
|
||||
buildPhases = (
|
||||
4336679017C56EF900D45AD9 /* Sources */,
|
||||
4336679117C56EF900D45AD9 /* Frameworks */,
|
||||
4336679217C56EF900D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = jsonsl;
|
||||
productName = jsonsl;
|
||||
productReference = 4336679417C56EF900D45AD9 /* libjsonsl.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
4336678C17C56EF900D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 4336678F17C56EF900D45AD9 /* Build configuration list for PBXProject "jsonsl" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 4336678B17C56EF900D45AD9;
|
||||
productRefGroup = 4336679517C56EF900D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4336679317C56EF900D45AD9 /* jsonsl */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4336679017C56EF900D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336679E17C56F0B00D45AD9 /* jsonsl.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4336679617C56EF900D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336679717C56EF900D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
4336679917C56EF900D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336679A17C56EF900D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4336678F17C56EF900D45AD9 /* Build configuration list for PBXProject "jsonsl" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336679617C56EF900D45AD9 /* Debug */,
|
||||
4336679717C56EF900D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
4336679817C56EF900D45AD9 /* Build configuration list for PBXNativeTarget "jsonsl" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336679917C56EF900D45AD9 /* Debug */,
|
||||
4336679A17C56EF900D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 4336678C17C56EF900D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,220 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4336678A17C56E1500D45AD9 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336678917C56E1500D45AD9 /* md5.c */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
4336678117C56DFD00D45AD9 /* libmd5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libmd5.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4336678917C56E1500D45AD9 /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5.c; path = ../../../src/md5/src/md5.c; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4336677E17C56DFD00D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4336677817C56DFD00D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336678817C56E0400D45AD9 /* src */,
|
||||
4336678217C56DFD00D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336678217C56DFD00D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336678117C56DFD00D45AD9 /* libmd5.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336678817C56E0400D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336678917C56E1500D45AD9 /* md5.c */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
4336677F17C56DFD00D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4336678017C56DFD00D45AD9 /* md5 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4336678517C56DFD00D45AD9 /* Build configuration list for PBXNativeTarget "md5" */;
|
||||
buildPhases = (
|
||||
4336677D17C56DFD00D45AD9 /* Sources */,
|
||||
4336677E17C56DFD00D45AD9 /* Frameworks */,
|
||||
4336677F17C56DFD00D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = md5;
|
||||
productName = md5;
|
||||
productReference = 4336678117C56DFD00D45AD9 /* libmd5.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
4336677917C56DFD00D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 4336677C17C56DFD00D45AD9 /* Build configuration list for PBXProject "md5" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 4336677817C56DFD00D45AD9;
|
||||
productRefGroup = 4336678217C56DFD00D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4336678017C56DFD00D45AD9 /* md5 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4336677D17C56DFD00D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336678A17C56E1500D45AD9 /* md5.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4336678317C56DFD00D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = ../../../src/md5/include;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336678417C56DFD00D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = ../../../src/md5/include;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
4336678617C56DFD00D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336678717C56DFD00D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4336677C17C56DFD00D45AD9 /* Build configuration list for PBXProject "md5" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336678317C56DFD00D45AD9 /* Debug */,
|
||||
4336678417C56DFD00D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
4336678517C56DFD00D45AD9 /* Build configuration list for PBXNativeTarget "md5" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336678617C56DFD00D45AD9 /* Debug */,
|
||||
4336678717C56DFD00D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 4336677917C56DFD00D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,544 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4336671317C56BE000D45AD9 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 433666C117C56BE000D45AD9 /* config.h */; };
|
||||
4336671417C56BE000D45AD9 /* dftables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C217C56BE000D45AD9 /* dftables.c */; };
|
||||
4336671517C56BE000D45AD9 /* pcre_byte_order.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C317C56BE000D45AD9 /* pcre_byte_order.c */; };
|
||||
4336671617C56BE000D45AD9 /* pcre_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C417C56BE000D45AD9 /* pcre_chartables.c */; };
|
||||
4336671717C56BE000D45AD9 /* pcre_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C517C56BE000D45AD9 /* pcre_compile.c */; };
|
||||
4336671817C56BE000D45AD9 /* pcre_config.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C617C56BE000D45AD9 /* pcre_config.c */; };
|
||||
4336671917C56BE000D45AD9 /* pcre_dfa_exec.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C717C56BE000D45AD9 /* pcre_dfa_exec.c */; };
|
||||
4336671A17C56BE000D45AD9 /* pcre_exec.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C817C56BE000D45AD9 /* pcre_exec.c */; };
|
||||
4336671B17C56BE000D45AD9 /* pcre_fullinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666C917C56BE000D45AD9 /* pcre_fullinfo.c */; };
|
||||
4336671C17C56BE000D45AD9 /* pcre_get.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666CA17C56BE000D45AD9 /* pcre_get.c */; };
|
||||
4336671D17C56BE000D45AD9 /* pcre_globals.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666CB17C56BE000D45AD9 /* pcre_globals.c */; };
|
||||
4336671E17C56BE000D45AD9 /* pcre_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 433666CC17C56BE000D45AD9 /* pcre_internal.h */; };
|
||||
4336671F17C56BE000D45AD9 /* pcre_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666CD17C56BE000D45AD9 /* pcre_jit_compile.c */; };
|
||||
4336672017C56BE000D45AD9 /* pcre_jit_test.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666CE17C56BE000D45AD9 /* pcre_jit_test.c */; };
|
||||
4336672117C56BE000D45AD9 /* pcre_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666CF17C56BE000D45AD9 /* pcre_maketables.c */; };
|
||||
4336672217C56BE000D45AD9 /* pcre_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D017C56BE000D45AD9 /* pcre_newline.c */; };
|
||||
4336672317C56BE000D45AD9 /* pcre_ord2utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D117C56BE000D45AD9 /* pcre_ord2utf8.c */; };
|
||||
4336672417C56BE000D45AD9 /* pcre_printint.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D217C56BE000D45AD9 /* pcre_printint.c */; };
|
||||
4336672517C56BE000D45AD9 /* pcre_refcount.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D317C56BE000D45AD9 /* pcre_refcount.c */; };
|
||||
4336672617C56BE000D45AD9 /* pcre_scanner.h in Headers */ = {isa = PBXBuildFile; fileRef = 433666D417C56BE000D45AD9 /* pcre_scanner.h */; };
|
||||
4336672717C56BE000D45AD9 /* pcre_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D517C56BE000D45AD9 /* pcre_string_utils.c */; };
|
||||
4336672817C56BE000D45AD9 /* pcre_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D617C56BE000D45AD9 /* pcre_study.c */; };
|
||||
4336672917C56BE000D45AD9 /* pcre_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D717C56BE000D45AD9 /* pcre_tables.c */; };
|
||||
4336672A17C56BE000D45AD9 /* pcre_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D817C56BE000D45AD9 /* pcre_ucd.c */; };
|
||||
4336672B17C56BE000D45AD9 /* pcre_valid_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666D917C56BE000D45AD9 /* pcre_valid_utf8.c */; };
|
||||
4336672C17C56BE000D45AD9 /* pcre_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666DA17C56BE000D45AD9 /* pcre_version.c */; };
|
||||
4336672D17C56BE000D45AD9 /* pcre_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666DB17C56BE000D45AD9 /* pcre_xclass.c */; };
|
||||
4336672E17C56BE000D45AD9 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = 433666DC17C56BE000D45AD9 /* pcre.h */; };
|
||||
4336672F17C56BE000D45AD9 /* pcre16_byte_order.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666DD17C56BE000D45AD9 /* pcre16_byte_order.c */; };
|
||||
4336673017C56BE000D45AD9 /* pcre16_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666DE17C56BE000D45AD9 /* pcre16_chartables.c */; };
|
||||
4336673117C56BE000D45AD9 /* pcre16_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666DF17C56BE000D45AD9 /* pcre16_compile.c */; };
|
||||
4336673217C56BE000D45AD9 /* pcre16_config.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E017C56BE000D45AD9 /* pcre16_config.c */; };
|
||||
4336673317C56BE000D45AD9 /* pcre16_dfa_exec.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E117C56BE000D45AD9 /* pcre16_dfa_exec.c */; };
|
||||
4336673417C56BE000D45AD9 /* pcre16_exec.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E217C56BE000D45AD9 /* pcre16_exec.c */; };
|
||||
4336673517C56BE000D45AD9 /* pcre16_fullinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E317C56BE000D45AD9 /* pcre16_fullinfo.c */; };
|
||||
4336673617C56BE000D45AD9 /* pcre16_get.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E417C56BE000D45AD9 /* pcre16_get.c */; };
|
||||
4336673717C56BE000D45AD9 /* pcre16_globals.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E517C56BE000D45AD9 /* pcre16_globals.c */; };
|
||||
4336673817C56BE000D45AD9 /* pcre16_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E617C56BE000D45AD9 /* pcre16_jit_compile.c */; };
|
||||
4336673917C56BE000D45AD9 /* pcre16_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E717C56BE000D45AD9 /* pcre16_maketables.c */; };
|
||||
4336673A17C56BE000D45AD9 /* pcre16_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E817C56BE000D45AD9 /* pcre16_newline.c */; };
|
||||
4336673B17C56BE000D45AD9 /* pcre16_ord2utf16.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666E917C56BE000D45AD9 /* pcre16_ord2utf16.c */; };
|
||||
4336673C17C56BE000D45AD9 /* pcre16_printint.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666EA17C56BE000D45AD9 /* pcre16_printint.c */; };
|
||||
4336673D17C56BE000D45AD9 /* pcre16_refcount.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666EB17C56BE000D45AD9 /* pcre16_refcount.c */; };
|
||||
4336673E17C56BE000D45AD9 /* pcre16_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666EC17C56BE000D45AD9 /* pcre16_string_utils.c */; };
|
||||
4336673F17C56BE000D45AD9 /* pcre16_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666ED17C56BE000D45AD9 /* pcre16_study.c */; };
|
||||
4336674017C56BE000D45AD9 /* pcre16_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666EE17C56BE000D45AD9 /* pcre16_tables.c */; };
|
||||
4336674117C56BE000D45AD9 /* pcre16_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666EF17C56BE000D45AD9 /* pcre16_ucd.c */; };
|
||||
4336674217C56BE000D45AD9 /* pcre16_utf16_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F017C56BE000D45AD9 /* pcre16_utf16_utils.c */; };
|
||||
4336674317C56BE000D45AD9 /* pcre16_valid_utf16.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F117C56BE000D45AD9 /* pcre16_valid_utf16.c */; };
|
||||
4336674417C56BE000D45AD9 /* pcre16_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F217C56BE000D45AD9 /* pcre16_version.c */; };
|
||||
4336674517C56BE000D45AD9 /* pcre16_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F317C56BE000D45AD9 /* pcre16_xclass.c */; };
|
||||
4336674617C56BE000D45AD9 /* pcre32_byte_order.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F417C56BE000D45AD9 /* pcre32_byte_order.c */; };
|
||||
4336674717C56BE000D45AD9 /* pcre32_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F517C56BE000D45AD9 /* pcre32_chartables.c */; };
|
||||
4336674817C56BE000D45AD9 /* pcre32_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F617C56BE000D45AD9 /* pcre32_compile.c */; };
|
||||
4336674917C56BE000D45AD9 /* pcre32_config.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F717C56BE000D45AD9 /* pcre32_config.c */; };
|
||||
4336674A17C56BE000D45AD9 /* pcre32_dfa_exec.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F817C56BE000D45AD9 /* pcre32_dfa_exec.c */; };
|
||||
4336674B17C56BE000D45AD9 /* pcre32_exec.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666F917C56BE000D45AD9 /* pcre32_exec.c */; };
|
||||
4336674C17C56BE000D45AD9 /* pcre32_fullinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666FA17C56BE000D45AD9 /* pcre32_fullinfo.c */; };
|
||||
4336674D17C56BE000D45AD9 /* pcre32_get.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666FB17C56BE000D45AD9 /* pcre32_get.c */; };
|
||||
4336674E17C56BE000D45AD9 /* pcre32_globals.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666FC17C56BE000D45AD9 /* pcre32_globals.c */; };
|
||||
4336674F17C56BE000D45AD9 /* pcre32_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666FD17C56BE000D45AD9 /* pcre32_jit_compile.c */; };
|
||||
4336675017C56BE000D45AD9 /* pcre32_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666FE17C56BE000D45AD9 /* pcre32_maketables.c */; };
|
||||
4336675117C56BE000D45AD9 /* pcre32_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = 433666FF17C56BE000D45AD9 /* pcre32_newline.c */; };
|
||||
4336675217C56BE000D45AD9 /* pcre32_ord2utf32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670017C56BE000D45AD9 /* pcre32_ord2utf32.c */; };
|
||||
4336675317C56BE000D45AD9 /* pcre32_printint.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670117C56BE000D45AD9 /* pcre32_printint.c */; };
|
||||
4336675417C56BE000D45AD9 /* pcre32_refcount.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670217C56BE000D45AD9 /* pcre32_refcount.c */; };
|
||||
4336675517C56BE000D45AD9 /* pcre32_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670317C56BE000D45AD9 /* pcre32_string_utils.c */; };
|
||||
4336675617C56BE000D45AD9 /* pcre32_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670417C56BE000D45AD9 /* pcre32_study.c */; };
|
||||
4336675717C56BE000D45AD9 /* pcre32_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670517C56BE000D45AD9 /* pcre32_tables.c */; };
|
||||
4336675817C56BE000D45AD9 /* pcre32_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670617C56BE000D45AD9 /* pcre32_ucd.c */; };
|
||||
4336675917C56BE000D45AD9 /* pcre32_utf32_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670717C56BE000D45AD9 /* pcre32_utf32_utils.c */; };
|
||||
4336675A17C56BE000D45AD9 /* pcre32_valid_utf32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670817C56BE000D45AD9 /* pcre32_valid_utf32.c */; };
|
||||
4336675B17C56BE000D45AD9 /* pcre32_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670917C56BE000D45AD9 /* pcre32_version.c */; };
|
||||
4336675C17C56BE000D45AD9 /* pcre32_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670A17C56BE000D45AD9 /* pcre32_xclass.c */; };
|
||||
4336675D17C56BE000D45AD9 /* pcrecpp_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336670B17C56BE000D45AD9 /* pcrecpp_internal.h */; };
|
||||
4336675E17C56BE000D45AD9 /* pcrecpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336670C17C56BE000D45AD9 /* pcrecpp.h */; };
|
||||
4336675F17C56BE000D45AD9 /* pcredemo.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670D17C56BE000D45AD9 /* pcredemo.c */; };
|
||||
4336676017C56BE000D45AD9 /* pcregrep.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670E17C56BE000D45AD9 /* pcregrep.c */; };
|
||||
4336676117C56BE000D45AD9 /* pcreposix.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336670F17C56BE000D45AD9 /* pcreposix.c */; };
|
||||
4336676217C56BE000D45AD9 /* pcreposix.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336671017C56BE000D45AD9 /* pcreposix.h */; };
|
||||
4336676317C56BE000D45AD9 /* pcretest.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336671117C56BE000D45AD9 /* pcretest.c */; };
|
||||
4336676417C56BE000D45AD9 /* ucp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336671217C56BE000D45AD9 /* ucp.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
433666B917C56BC000D45AD9 /* libpcre.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libpcre.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
433666C117C56BE000D45AD9 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = ../../../src/pcre/config.h; sourceTree = "<group>"; };
|
||||
433666C217C56BE000D45AD9 /* dftables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dftables.c; path = ../../../src/pcre/dftables.c; sourceTree = "<group>"; };
|
||||
433666C317C56BE000D45AD9 /* pcre_byte_order.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_byte_order.c; path = ../../../src/pcre/pcre_byte_order.c; sourceTree = "<group>"; };
|
||||
433666C417C56BE000D45AD9 /* pcre_chartables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_chartables.c; path = ../../../src/pcre/pcre_chartables.c; sourceTree = "<group>"; };
|
||||
433666C517C56BE000D45AD9 /* pcre_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_compile.c; path = ../../../src/pcre/pcre_compile.c; sourceTree = "<group>"; };
|
||||
433666C617C56BE000D45AD9 /* pcre_config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_config.c; path = ../../../src/pcre/pcre_config.c; sourceTree = "<group>"; };
|
||||
433666C717C56BE000D45AD9 /* pcre_dfa_exec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_dfa_exec.c; path = ../../../src/pcre/pcre_dfa_exec.c; sourceTree = "<group>"; };
|
||||
433666C817C56BE000D45AD9 /* pcre_exec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_exec.c; path = ../../../src/pcre/pcre_exec.c; sourceTree = "<group>"; };
|
||||
433666C917C56BE000D45AD9 /* pcre_fullinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_fullinfo.c; path = ../../../src/pcre/pcre_fullinfo.c; sourceTree = "<group>"; };
|
||||
433666CA17C56BE000D45AD9 /* pcre_get.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_get.c; path = ../../../src/pcre/pcre_get.c; sourceTree = "<group>"; };
|
||||
433666CB17C56BE000D45AD9 /* pcre_globals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_globals.c; path = ../../../src/pcre/pcre_globals.c; sourceTree = "<group>"; };
|
||||
433666CC17C56BE000D45AD9 /* pcre_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcre_internal.h; path = ../../../src/pcre/pcre_internal.h; sourceTree = "<group>"; };
|
||||
433666CD17C56BE000D45AD9 /* pcre_jit_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_jit_compile.c; path = ../../../src/pcre/pcre_jit_compile.c; sourceTree = "<group>"; };
|
||||
433666CE17C56BE000D45AD9 /* pcre_jit_test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_jit_test.c; path = ../../../src/pcre/pcre_jit_test.c; sourceTree = "<group>"; };
|
||||
433666CF17C56BE000D45AD9 /* pcre_maketables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_maketables.c; path = ../../../src/pcre/pcre_maketables.c; sourceTree = "<group>"; };
|
||||
433666D017C56BE000D45AD9 /* pcre_newline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_newline.c; path = ../../../src/pcre/pcre_newline.c; sourceTree = "<group>"; };
|
||||
433666D117C56BE000D45AD9 /* pcre_ord2utf8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_ord2utf8.c; path = ../../../src/pcre/pcre_ord2utf8.c; sourceTree = "<group>"; };
|
||||
433666D217C56BE000D45AD9 /* pcre_printint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_printint.c; path = ../../../src/pcre/pcre_printint.c; sourceTree = "<group>"; };
|
||||
433666D317C56BE000D45AD9 /* pcre_refcount.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_refcount.c; path = ../../../src/pcre/pcre_refcount.c; sourceTree = "<group>"; };
|
||||
433666D417C56BE000D45AD9 /* pcre_scanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcre_scanner.h; path = ../../../src/pcre/pcre_scanner.h; sourceTree = "<group>"; };
|
||||
433666D517C56BE000D45AD9 /* pcre_string_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_string_utils.c; path = ../../../src/pcre/pcre_string_utils.c; sourceTree = "<group>"; };
|
||||
433666D617C56BE000D45AD9 /* pcre_study.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_study.c; path = ../../../src/pcre/pcre_study.c; sourceTree = "<group>"; };
|
||||
433666D717C56BE000D45AD9 /* pcre_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_tables.c; path = ../../../src/pcre/pcre_tables.c; sourceTree = "<group>"; };
|
||||
433666D817C56BE000D45AD9 /* pcre_ucd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_ucd.c; path = ../../../src/pcre/pcre_ucd.c; sourceTree = "<group>"; };
|
||||
433666D917C56BE000D45AD9 /* pcre_valid_utf8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_valid_utf8.c; path = ../../../src/pcre/pcre_valid_utf8.c; sourceTree = "<group>"; };
|
||||
433666DA17C56BE000D45AD9 /* pcre_version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_version.c; path = ../../../src/pcre/pcre_version.c; sourceTree = "<group>"; };
|
||||
433666DB17C56BE000D45AD9 /* pcre_xclass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre_xclass.c; path = ../../../src/pcre/pcre_xclass.c; sourceTree = "<group>"; };
|
||||
433666DC17C56BE000D45AD9 /* pcre.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = ../../../src/pcre/pcre.h; sourceTree = "<group>"; };
|
||||
433666DD17C56BE000D45AD9 /* pcre16_byte_order.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_byte_order.c; path = ../../../src/pcre/pcre16_byte_order.c; sourceTree = "<group>"; };
|
||||
433666DE17C56BE000D45AD9 /* pcre16_chartables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_chartables.c; path = ../../../src/pcre/pcre16_chartables.c; sourceTree = "<group>"; };
|
||||
433666DF17C56BE000D45AD9 /* pcre16_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_compile.c; path = ../../../src/pcre/pcre16_compile.c; sourceTree = "<group>"; };
|
||||
433666E017C56BE000D45AD9 /* pcre16_config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_config.c; path = ../../../src/pcre/pcre16_config.c; sourceTree = "<group>"; };
|
||||
433666E117C56BE000D45AD9 /* pcre16_dfa_exec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_dfa_exec.c; path = ../../../src/pcre/pcre16_dfa_exec.c; sourceTree = "<group>"; };
|
||||
433666E217C56BE000D45AD9 /* pcre16_exec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_exec.c; path = ../../../src/pcre/pcre16_exec.c; sourceTree = "<group>"; };
|
||||
433666E317C56BE000D45AD9 /* pcre16_fullinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_fullinfo.c; path = ../../../src/pcre/pcre16_fullinfo.c; sourceTree = "<group>"; };
|
||||
433666E417C56BE000D45AD9 /* pcre16_get.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_get.c; path = ../../../src/pcre/pcre16_get.c; sourceTree = "<group>"; };
|
||||
433666E517C56BE000D45AD9 /* pcre16_globals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_globals.c; path = ../../../src/pcre/pcre16_globals.c; sourceTree = "<group>"; };
|
||||
433666E617C56BE000D45AD9 /* pcre16_jit_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_jit_compile.c; path = ../../../src/pcre/pcre16_jit_compile.c; sourceTree = "<group>"; };
|
||||
433666E717C56BE000D45AD9 /* pcre16_maketables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_maketables.c; path = ../../../src/pcre/pcre16_maketables.c; sourceTree = "<group>"; };
|
||||
433666E817C56BE000D45AD9 /* pcre16_newline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_newline.c; path = ../../../src/pcre/pcre16_newline.c; sourceTree = "<group>"; };
|
||||
433666E917C56BE000D45AD9 /* pcre16_ord2utf16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_ord2utf16.c; path = ../../../src/pcre/pcre16_ord2utf16.c; sourceTree = "<group>"; };
|
||||
433666EA17C56BE000D45AD9 /* pcre16_printint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_printint.c; path = ../../../src/pcre/pcre16_printint.c; sourceTree = "<group>"; };
|
||||
433666EB17C56BE000D45AD9 /* pcre16_refcount.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_refcount.c; path = ../../../src/pcre/pcre16_refcount.c; sourceTree = "<group>"; };
|
||||
433666EC17C56BE000D45AD9 /* pcre16_string_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_string_utils.c; path = ../../../src/pcre/pcre16_string_utils.c; sourceTree = "<group>"; };
|
||||
433666ED17C56BE000D45AD9 /* pcre16_study.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_study.c; path = ../../../src/pcre/pcre16_study.c; sourceTree = "<group>"; };
|
||||
433666EE17C56BE000D45AD9 /* pcre16_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_tables.c; path = ../../../src/pcre/pcre16_tables.c; sourceTree = "<group>"; };
|
||||
433666EF17C56BE000D45AD9 /* pcre16_ucd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_ucd.c; path = ../../../src/pcre/pcre16_ucd.c; sourceTree = "<group>"; };
|
||||
433666F017C56BE000D45AD9 /* pcre16_utf16_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_utf16_utils.c; path = ../../../src/pcre/pcre16_utf16_utils.c; sourceTree = "<group>"; };
|
||||
433666F117C56BE000D45AD9 /* pcre16_valid_utf16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_valid_utf16.c; path = ../../../src/pcre/pcre16_valid_utf16.c; sourceTree = "<group>"; };
|
||||
433666F217C56BE000D45AD9 /* pcre16_version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_version.c; path = ../../../src/pcre/pcre16_version.c; sourceTree = "<group>"; };
|
||||
433666F317C56BE000D45AD9 /* pcre16_xclass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre16_xclass.c; path = ../../../src/pcre/pcre16_xclass.c; sourceTree = "<group>"; };
|
||||
433666F417C56BE000D45AD9 /* pcre32_byte_order.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_byte_order.c; path = ../../../src/pcre/pcre32_byte_order.c; sourceTree = "<group>"; };
|
||||
433666F517C56BE000D45AD9 /* pcre32_chartables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_chartables.c; path = ../../../src/pcre/pcre32_chartables.c; sourceTree = "<group>"; };
|
||||
433666F617C56BE000D45AD9 /* pcre32_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_compile.c; path = ../../../src/pcre/pcre32_compile.c; sourceTree = "<group>"; };
|
||||
433666F717C56BE000D45AD9 /* pcre32_config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_config.c; path = ../../../src/pcre/pcre32_config.c; sourceTree = "<group>"; };
|
||||
433666F817C56BE000D45AD9 /* pcre32_dfa_exec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_dfa_exec.c; path = ../../../src/pcre/pcre32_dfa_exec.c; sourceTree = "<group>"; };
|
||||
433666F917C56BE000D45AD9 /* pcre32_exec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_exec.c; path = ../../../src/pcre/pcre32_exec.c; sourceTree = "<group>"; };
|
||||
433666FA17C56BE000D45AD9 /* pcre32_fullinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_fullinfo.c; path = ../../../src/pcre/pcre32_fullinfo.c; sourceTree = "<group>"; };
|
||||
433666FB17C56BE000D45AD9 /* pcre32_get.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_get.c; path = ../../../src/pcre/pcre32_get.c; sourceTree = "<group>"; };
|
||||
433666FC17C56BE000D45AD9 /* pcre32_globals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_globals.c; path = ../../../src/pcre/pcre32_globals.c; sourceTree = "<group>"; };
|
||||
433666FD17C56BE000D45AD9 /* pcre32_jit_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_jit_compile.c; path = ../../../src/pcre/pcre32_jit_compile.c; sourceTree = "<group>"; };
|
||||
433666FE17C56BE000D45AD9 /* pcre32_maketables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_maketables.c; path = ../../../src/pcre/pcre32_maketables.c; sourceTree = "<group>"; };
|
||||
433666FF17C56BE000D45AD9 /* pcre32_newline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_newline.c; path = ../../../src/pcre/pcre32_newline.c; sourceTree = "<group>"; };
|
||||
4336670017C56BE000D45AD9 /* pcre32_ord2utf32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_ord2utf32.c; path = ../../../src/pcre/pcre32_ord2utf32.c; sourceTree = "<group>"; };
|
||||
4336670117C56BE000D45AD9 /* pcre32_printint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_printint.c; path = ../../../src/pcre/pcre32_printint.c; sourceTree = "<group>"; };
|
||||
4336670217C56BE000D45AD9 /* pcre32_refcount.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_refcount.c; path = ../../../src/pcre/pcre32_refcount.c; sourceTree = "<group>"; };
|
||||
4336670317C56BE000D45AD9 /* pcre32_string_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_string_utils.c; path = ../../../src/pcre/pcre32_string_utils.c; sourceTree = "<group>"; };
|
||||
4336670417C56BE000D45AD9 /* pcre32_study.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_study.c; path = ../../../src/pcre/pcre32_study.c; sourceTree = "<group>"; };
|
||||
4336670517C56BE000D45AD9 /* pcre32_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_tables.c; path = ../../../src/pcre/pcre32_tables.c; sourceTree = "<group>"; };
|
||||
4336670617C56BE000D45AD9 /* pcre32_ucd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_ucd.c; path = ../../../src/pcre/pcre32_ucd.c; sourceTree = "<group>"; };
|
||||
4336670717C56BE000D45AD9 /* pcre32_utf32_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_utf32_utils.c; path = ../../../src/pcre/pcre32_utf32_utils.c; sourceTree = "<group>"; };
|
||||
4336670817C56BE000D45AD9 /* pcre32_valid_utf32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_valid_utf32.c; path = ../../../src/pcre/pcre32_valid_utf32.c; sourceTree = "<group>"; };
|
||||
4336670917C56BE000D45AD9 /* pcre32_version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_version.c; path = ../../../src/pcre/pcre32_version.c; sourceTree = "<group>"; };
|
||||
4336670A17C56BE000D45AD9 /* pcre32_xclass.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcre32_xclass.c; path = ../../../src/pcre/pcre32_xclass.c; sourceTree = "<group>"; };
|
||||
4336670B17C56BE000D45AD9 /* pcrecpp_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcrecpp_internal.h; path = ../../../src/pcre/pcrecpp_internal.h; sourceTree = "<group>"; };
|
||||
4336670C17C56BE000D45AD9 /* pcrecpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcrecpp.h; path = ../../../src/pcre/pcrecpp.h; sourceTree = "<group>"; };
|
||||
4336670D17C56BE000D45AD9 /* pcredemo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcredemo.c; path = ../../../src/pcre/pcredemo.c; sourceTree = "<group>"; };
|
||||
4336670E17C56BE000D45AD9 /* pcregrep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcregrep.c; path = ../../../src/pcre/pcregrep.c; sourceTree = "<group>"; };
|
||||
4336670F17C56BE000D45AD9 /* pcreposix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcreposix.c; path = ../../../src/pcre/pcreposix.c; sourceTree = "<group>"; };
|
||||
4336671017C56BE000D45AD9 /* pcreposix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcreposix.h; path = ../../../src/pcre/pcreposix.h; sourceTree = "<group>"; };
|
||||
4336671117C56BE000D45AD9 /* pcretest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pcretest.c; path = ../../../src/pcre/pcretest.c; sourceTree = "<group>"; };
|
||||
4336671217C56BE000D45AD9 /* ucp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ucp.h; path = ../../../src/pcre/ucp.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
433666B617C56BC000D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
433666B017C56BC000D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433666C017C56BC400D45AD9 /* src */,
|
||||
433666BA17C56BC000D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
433666BA17C56BC000D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433666B917C56BC000D45AD9 /* libpcre.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
433666C017C56BC400D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433666C117C56BE000D45AD9 /* config.h */,
|
||||
433666C217C56BE000D45AD9 /* dftables.c */,
|
||||
433666C317C56BE000D45AD9 /* pcre_byte_order.c */,
|
||||
433666C417C56BE000D45AD9 /* pcre_chartables.c */,
|
||||
433666C517C56BE000D45AD9 /* pcre_compile.c */,
|
||||
433666C617C56BE000D45AD9 /* pcre_config.c */,
|
||||
433666C717C56BE000D45AD9 /* pcre_dfa_exec.c */,
|
||||
433666C817C56BE000D45AD9 /* pcre_exec.c */,
|
||||
433666C917C56BE000D45AD9 /* pcre_fullinfo.c */,
|
||||
433666CA17C56BE000D45AD9 /* pcre_get.c */,
|
||||
433666CB17C56BE000D45AD9 /* pcre_globals.c */,
|
||||
433666CC17C56BE000D45AD9 /* pcre_internal.h */,
|
||||
433666CD17C56BE000D45AD9 /* pcre_jit_compile.c */,
|
||||
433666CE17C56BE000D45AD9 /* pcre_jit_test.c */,
|
||||
433666CF17C56BE000D45AD9 /* pcre_maketables.c */,
|
||||
433666D017C56BE000D45AD9 /* pcre_newline.c */,
|
||||
433666D117C56BE000D45AD9 /* pcre_ord2utf8.c */,
|
||||
433666D217C56BE000D45AD9 /* pcre_printint.c */,
|
||||
433666D317C56BE000D45AD9 /* pcre_refcount.c */,
|
||||
433666D417C56BE000D45AD9 /* pcre_scanner.h */,
|
||||
433666D517C56BE000D45AD9 /* pcre_string_utils.c */,
|
||||
433666D617C56BE000D45AD9 /* pcre_study.c */,
|
||||
433666D717C56BE000D45AD9 /* pcre_tables.c */,
|
||||
433666D817C56BE000D45AD9 /* pcre_ucd.c */,
|
||||
433666D917C56BE000D45AD9 /* pcre_valid_utf8.c */,
|
||||
433666DA17C56BE000D45AD9 /* pcre_version.c */,
|
||||
433666DB17C56BE000D45AD9 /* pcre_xclass.c */,
|
||||
433666DC17C56BE000D45AD9 /* pcre.h */,
|
||||
433666DD17C56BE000D45AD9 /* pcre16_byte_order.c */,
|
||||
433666DE17C56BE000D45AD9 /* pcre16_chartables.c */,
|
||||
433666DF17C56BE000D45AD9 /* pcre16_compile.c */,
|
||||
433666E017C56BE000D45AD9 /* pcre16_config.c */,
|
||||
433666E117C56BE000D45AD9 /* pcre16_dfa_exec.c */,
|
||||
433666E217C56BE000D45AD9 /* pcre16_exec.c */,
|
||||
433666E317C56BE000D45AD9 /* pcre16_fullinfo.c */,
|
||||
433666E417C56BE000D45AD9 /* pcre16_get.c */,
|
||||
433666E517C56BE000D45AD9 /* pcre16_globals.c */,
|
||||
433666E617C56BE000D45AD9 /* pcre16_jit_compile.c */,
|
||||
433666E717C56BE000D45AD9 /* pcre16_maketables.c */,
|
||||
433666E817C56BE000D45AD9 /* pcre16_newline.c */,
|
||||
433666E917C56BE000D45AD9 /* pcre16_ord2utf16.c */,
|
||||
433666EA17C56BE000D45AD9 /* pcre16_printint.c */,
|
||||
433666EB17C56BE000D45AD9 /* pcre16_refcount.c */,
|
||||
433666EC17C56BE000D45AD9 /* pcre16_string_utils.c */,
|
||||
433666ED17C56BE000D45AD9 /* pcre16_study.c */,
|
||||
433666EE17C56BE000D45AD9 /* pcre16_tables.c */,
|
||||
433666EF17C56BE000D45AD9 /* pcre16_ucd.c */,
|
||||
433666F017C56BE000D45AD9 /* pcre16_utf16_utils.c */,
|
||||
433666F117C56BE000D45AD9 /* pcre16_valid_utf16.c */,
|
||||
433666F217C56BE000D45AD9 /* pcre16_version.c */,
|
||||
433666F317C56BE000D45AD9 /* pcre16_xclass.c */,
|
||||
433666F417C56BE000D45AD9 /* pcre32_byte_order.c */,
|
||||
433666F517C56BE000D45AD9 /* pcre32_chartables.c */,
|
||||
433666F617C56BE000D45AD9 /* pcre32_compile.c */,
|
||||
433666F717C56BE000D45AD9 /* pcre32_config.c */,
|
||||
433666F817C56BE000D45AD9 /* pcre32_dfa_exec.c */,
|
||||
433666F917C56BE000D45AD9 /* pcre32_exec.c */,
|
||||
433666FA17C56BE000D45AD9 /* pcre32_fullinfo.c */,
|
||||
433666FB17C56BE000D45AD9 /* pcre32_get.c */,
|
||||
433666FC17C56BE000D45AD9 /* pcre32_globals.c */,
|
||||
433666FD17C56BE000D45AD9 /* pcre32_jit_compile.c */,
|
||||
433666FE17C56BE000D45AD9 /* pcre32_maketables.c */,
|
||||
433666FF17C56BE000D45AD9 /* pcre32_newline.c */,
|
||||
4336670017C56BE000D45AD9 /* pcre32_ord2utf32.c */,
|
||||
4336670117C56BE000D45AD9 /* pcre32_printint.c */,
|
||||
4336670217C56BE000D45AD9 /* pcre32_refcount.c */,
|
||||
4336670317C56BE000D45AD9 /* pcre32_string_utils.c */,
|
||||
4336670417C56BE000D45AD9 /* pcre32_study.c */,
|
||||
4336670517C56BE000D45AD9 /* pcre32_tables.c */,
|
||||
4336670617C56BE000D45AD9 /* pcre32_ucd.c */,
|
||||
4336670717C56BE000D45AD9 /* pcre32_utf32_utils.c */,
|
||||
4336670817C56BE000D45AD9 /* pcre32_valid_utf32.c */,
|
||||
4336670917C56BE000D45AD9 /* pcre32_version.c */,
|
||||
4336670A17C56BE000D45AD9 /* pcre32_xclass.c */,
|
||||
4336670B17C56BE000D45AD9 /* pcrecpp_internal.h */,
|
||||
4336670C17C56BE000D45AD9 /* pcrecpp.h */,
|
||||
4336670D17C56BE000D45AD9 /* pcredemo.c */,
|
||||
4336670E17C56BE000D45AD9 /* pcregrep.c */,
|
||||
4336670F17C56BE000D45AD9 /* pcreposix.c */,
|
||||
4336671017C56BE000D45AD9 /* pcreposix.h */,
|
||||
4336671117C56BE000D45AD9 /* pcretest.c */,
|
||||
4336671217C56BE000D45AD9 /* ucp.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
433666B717C56BC000D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336671317C56BE000D45AD9 /* config.h in Headers */,
|
||||
4336671E17C56BE000D45AD9 /* pcre_internal.h in Headers */,
|
||||
4336672617C56BE000D45AD9 /* pcre_scanner.h in Headers */,
|
||||
4336672E17C56BE000D45AD9 /* pcre.h in Headers */,
|
||||
4336675D17C56BE000D45AD9 /* pcrecpp_internal.h in Headers */,
|
||||
4336675E17C56BE000D45AD9 /* pcrecpp.h in Headers */,
|
||||
4336676217C56BE000D45AD9 /* pcreposix.h in Headers */,
|
||||
4336676417C56BE000D45AD9 /* ucp.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
433666B817C56BC000D45AD9 /* pcre */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 433666BD17C56BC000D45AD9 /* Build configuration list for PBXNativeTarget "pcre" */;
|
||||
buildPhases = (
|
||||
433666B517C56BC000D45AD9 /* Sources */,
|
||||
433666B617C56BC000D45AD9 /* Frameworks */,
|
||||
433666B717C56BC000D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = pcre;
|
||||
productName = pcre;
|
||||
productReference = 433666B917C56BC000D45AD9 /* libpcre.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
433666B117C56BC000D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 433666B417C56BC000D45AD9 /* Build configuration list for PBXProject "pcre" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 433666B017C56BC000D45AD9;
|
||||
productRefGroup = 433666BA17C56BC000D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
433666B817C56BC000D45AD9 /* pcre */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
433666B517C56BC000D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336671417C56BE000D45AD9 /* dftables.c in Sources */,
|
||||
4336671517C56BE000D45AD9 /* pcre_byte_order.c in Sources */,
|
||||
4336671617C56BE000D45AD9 /* pcre_chartables.c in Sources */,
|
||||
4336671717C56BE000D45AD9 /* pcre_compile.c in Sources */,
|
||||
4336671817C56BE000D45AD9 /* pcre_config.c in Sources */,
|
||||
4336671917C56BE000D45AD9 /* pcre_dfa_exec.c in Sources */,
|
||||
4336671A17C56BE000D45AD9 /* pcre_exec.c in Sources */,
|
||||
4336671B17C56BE000D45AD9 /* pcre_fullinfo.c in Sources */,
|
||||
4336671C17C56BE000D45AD9 /* pcre_get.c in Sources */,
|
||||
4336671D17C56BE000D45AD9 /* pcre_globals.c in Sources */,
|
||||
4336671F17C56BE000D45AD9 /* pcre_jit_compile.c in Sources */,
|
||||
4336672017C56BE000D45AD9 /* pcre_jit_test.c in Sources */,
|
||||
4336672117C56BE000D45AD9 /* pcre_maketables.c in Sources */,
|
||||
4336672217C56BE000D45AD9 /* pcre_newline.c in Sources */,
|
||||
4336672317C56BE000D45AD9 /* pcre_ord2utf8.c in Sources */,
|
||||
4336672417C56BE000D45AD9 /* pcre_printint.c in Sources */,
|
||||
4336672517C56BE000D45AD9 /* pcre_refcount.c in Sources */,
|
||||
4336672717C56BE000D45AD9 /* pcre_string_utils.c in Sources */,
|
||||
4336672817C56BE000D45AD9 /* pcre_study.c in Sources */,
|
||||
4336672917C56BE000D45AD9 /* pcre_tables.c in Sources */,
|
||||
4336672A17C56BE000D45AD9 /* pcre_ucd.c in Sources */,
|
||||
4336672B17C56BE000D45AD9 /* pcre_valid_utf8.c in Sources */,
|
||||
4336672C17C56BE000D45AD9 /* pcre_version.c in Sources */,
|
||||
4336672D17C56BE000D45AD9 /* pcre_xclass.c in Sources */,
|
||||
4336672F17C56BE000D45AD9 /* pcre16_byte_order.c in Sources */,
|
||||
4336673017C56BE000D45AD9 /* pcre16_chartables.c in Sources */,
|
||||
4336673117C56BE000D45AD9 /* pcre16_compile.c in Sources */,
|
||||
4336673217C56BE000D45AD9 /* pcre16_config.c in Sources */,
|
||||
4336673317C56BE000D45AD9 /* pcre16_dfa_exec.c in Sources */,
|
||||
4336673417C56BE000D45AD9 /* pcre16_exec.c in Sources */,
|
||||
4336673517C56BE000D45AD9 /* pcre16_fullinfo.c in Sources */,
|
||||
4336673617C56BE000D45AD9 /* pcre16_get.c in Sources */,
|
||||
4336673717C56BE000D45AD9 /* pcre16_globals.c in Sources */,
|
||||
4336673817C56BE000D45AD9 /* pcre16_jit_compile.c in Sources */,
|
||||
4336673917C56BE000D45AD9 /* pcre16_maketables.c in Sources */,
|
||||
4336673A17C56BE000D45AD9 /* pcre16_newline.c in Sources */,
|
||||
4336673B17C56BE000D45AD9 /* pcre16_ord2utf16.c in Sources */,
|
||||
4336673C17C56BE000D45AD9 /* pcre16_printint.c in Sources */,
|
||||
4336673D17C56BE000D45AD9 /* pcre16_refcount.c in Sources */,
|
||||
4336673E17C56BE000D45AD9 /* pcre16_string_utils.c in Sources */,
|
||||
4336673F17C56BE000D45AD9 /* pcre16_study.c in Sources */,
|
||||
4336674017C56BE000D45AD9 /* pcre16_tables.c in Sources */,
|
||||
4336674117C56BE000D45AD9 /* pcre16_ucd.c in Sources */,
|
||||
4336674217C56BE000D45AD9 /* pcre16_utf16_utils.c in Sources */,
|
||||
4336674317C56BE000D45AD9 /* pcre16_valid_utf16.c in Sources */,
|
||||
4336674417C56BE000D45AD9 /* pcre16_version.c in Sources */,
|
||||
4336674517C56BE000D45AD9 /* pcre16_xclass.c in Sources */,
|
||||
4336674617C56BE000D45AD9 /* pcre32_byte_order.c in Sources */,
|
||||
4336674717C56BE000D45AD9 /* pcre32_chartables.c in Sources */,
|
||||
4336674817C56BE000D45AD9 /* pcre32_compile.c in Sources */,
|
||||
4336674917C56BE000D45AD9 /* pcre32_config.c in Sources */,
|
||||
4336674A17C56BE000D45AD9 /* pcre32_dfa_exec.c in Sources */,
|
||||
4336674B17C56BE000D45AD9 /* pcre32_exec.c in Sources */,
|
||||
4336674C17C56BE000D45AD9 /* pcre32_fullinfo.c in Sources */,
|
||||
4336674D17C56BE000D45AD9 /* pcre32_get.c in Sources */,
|
||||
4336674E17C56BE000D45AD9 /* pcre32_globals.c in Sources */,
|
||||
4336674F17C56BE000D45AD9 /* pcre32_jit_compile.c in Sources */,
|
||||
4336675017C56BE000D45AD9 /* pcre32_maketables.c in Sources */,
|
||||
4336675117C56BE000D45AD9 /* pcre32_newline.c in Sources */,
|
||||
4336675217C56BE000D45AD9 /* pcre32_ord2utf32.c in Sources */,
|
||||
4336675317C56BE000D45AD9 /* pcre32_printint.c in Sources */,
|
||||
4336675417C56BE000D45AD9 /* pcre32_refcount.c in Sources */,
|
||||
4336675517C56BE000D45AD9 /* pcre32_string_utils.c in Sources */,
|
||||
4336675617C56BE000D45AD9 /* pcre32_study.c in Sources */,
|
||||
4336675717C56BE000D45AD9 /* pcre32_tables.c in Sources */,
|
||||
4336675817C56BE000D45AD9 /* pcre32_ucd.c in Sources */,
|
||||
4336675917C56BE000D45AD9 /* pcre32_utf32_utils.c in Sources */,
|
||||
4336675A17C56BE000D45AD9 /* pcre32_valid_utf32.c in Sources */,
|
||||
4336675B17C56BE000D45AD9 /* pcre32_version.c in Sources */,
|
||||
4336675C17C56BE000D45AD9 /* pcre32_xclass.c in Sources */,
|
||||
4336675F17C56BE000D45AD9 /* pcredemo.c in Sources */,
|
||||
4336676017C56BE000D45AD9 /* pcregrep.c in Sources */,
|
||||
4336676117C56BE000D45AD9 /* pcreposix.c in Sources */,
|
||||
4336676317C56BE000D45AD9 /* pcretest.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
433666BB17C56BC000D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"HAVE_CONFIG_H=1",
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
433666BC17C56BC000D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = "HAVE_CONFIG_H=1";
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
433666BE17C56BC000D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
433666BF17C56BC000D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
433666B417C56BC000D45AD9 /* Build configuration list for PBXProject "pcre" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
433666BB17C56BC000D45AD9 /* Debug */,
|
||||
433666BC17C56BC000D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
433666BD17C56BC000D45AD9 /* Build configuration list for PBXNativeTarget "pcre" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
433666BE17C56BC000D45AD9 /* Debug */,
|
||||
433666BF17C56BC000D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 433666B117C56BC000D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,318 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
433665F517C568DF00D45AD9 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665DD17C568DF00D45AD9 /* adler32.c */; };
|
||||
433665F617C568DF00D45AD9 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665DE17C568DF00D45AD9 /* compress.c */; };
|
||||
433665F717C568DF00D45AD9 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665DF17C568DF00D45AD9 /* crc32.c */; };
|
||||
433665F817C568DF00D45AD9 /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665E017C568DF00D45AD9 /* crc32.h */; };
|
||||
433665F917C568DF00D45AD9 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E117C568DF00D45AD9 /* deflate.c */; };
|
||||
433665FA17C568DF00D45AD9 /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665E217C568DF00D45AD9 /* deflate.h */; };
|
||||
433665FB17C568DF00D45AD9 /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E317C568DF00D45AD9 /* gzclose.c */; };
|
||||
433665FC17C568DF00D45AD9 /* gzguts.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665E417C568DF00D45AD9 /* gzguts.h */; };
|
||||
433665FD17C568DF00D45AD9 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E517C568DF00D45AD9 /* gzlib.c */; };
|
||||
433665FE17C568DF00D45AD9 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E617C568DF00D45AD9 /* gzread.c */; };
|
||||
433665FF17C568DF00D45AD9 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E717C568DF00D45AD9 /* gzwrite.c */; };
|
||||
4336660017C568DF00D45AD9 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E817C568DF00D45AD9 /* infback.c */; };
|
||||
4336660117C568DF00D45AD9 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665E917C568DF00D45AD9 /* inffast.c */; };
|
||||
4336660217C568DF00D45AD9 /* inffast.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665EA17C568DF00D45AD9 /* inffast.h */; };
|
||||
4336660317C568DF00D45AD9 /* inffixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665EB17C568DF00D45AD9 /* inffixed.h */; };
|
||||
4336660417C568DF00D45AD9 /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665EC17C568DF00D45AD9 /* inflate.c */; };
|
||||
4336660517C568DF00D45AD9 /* inflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665ED17C568DF00D45AD9 /* inflate.h */; };
|
||||
4336660617C568DF00D45AD9 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665EE17C568DF00D45AD9 /* inftrees.c */; };
|
||||
4336660717C568DF00D45AD9 /* inftrees.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665EF17C568DF00D45AD9 /* inftrees.h */; };
|
||||
4336660817C568DF00D45AD9 /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665F017C568DF00D45AD9 /* trees.c */; };
|
||||
4336660917C568DF00D45AD9 /* trees.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665F117C568DF00D45AD9 /* trees.h */; };
|
||||
4336660A17C568DF00D45AD9 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665F217C568DF00D45AD9 /* uncompr.c */; };
|
||||
4336660B17C568DF00D45AD9 /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 433665F317C568DF00D45AD9 /* zutil.c */; };
|
||||
4336660C17C568DF00D45AD9 /* zutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 433665F417C568DF00D45AD9 /* zutil.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
433665D517C5632600D45AD9 /* libpng.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libpng.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
433665DD17C568DF00D45AD9 /* adler32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../../src/zlib/src/adler32.c; sourceTree = "<group>"; };
|
||||
433665DE17C568DF00D45AD9 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../../src/zlib/src/compress.c; sourceTree = "<group>"; };
|
||||
433665DF17C568DF00D45AD9 /* crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../../src/zlib/src/crc32.c; sourceTree = "<group>"; };
|
||||
433665E017C568DF00D45AD9 /* crc32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crc32.h; path = ../../../src/zlib/src/crc32.h; sourceTree = "<group>"; };
|
||||
433665E117C568DF00D45AD9 /* deflate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../../src/zlib/src/deflate.c; sourceTree = "<group>"; };
|
||||
433665E217C568DF00D45AD9 /* deflate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = ../../../src/zlib/src/deflate.h; sourceTree = "<group>"; };
|
||||
433665E317C568DF00D45AD9 /* gzclose.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzclose.c; path = ../../../src/zlib/src/gzclose.c; sourceTree = "<group>"; };
|
||||
433665E417C568DF00D45AD9 /* gzguts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gzguts.h; path = ../../../src/zlib/src/gzguts.h; sourceTree = "<group>"; };
|
||||
433665E517C568DF00D45AD9 /* gzlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzlib.c; path = ../../../src/zlib/src/gzlib.c; sourceTree = "<group>"; };
|
||||
433665E617C568DF00D45AD9 /* gzread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzread.c; path = ../../../src/zlib/src/gzread.c; sourceTree = "<group>"; };
|
||||
433665E717C568DF00D45AD9 /* gzwrite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzwrite.c; path = ../../../src/zlib/src/gzwrite.c; sourceTree = "<group>"; };
|
||||
433665E817C568DF00D45AD9 /* infback.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../../src/zlib/src/infback.c; sourceTree = "<group>"; };
|
||||
433665E917C568DF00D45AD9 /* inffast.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../../src/zlib/src/inffast.c; sourceTree = "<group>"; };
|
||||
433665EA17C568DF00D45AD9 /* inffast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = ../../../src/zlib/src/inffast.h; sourceTree = "<group>"; };
|
||||
433665EB17C568DF00D45AD9 /* inffixed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = ../../../src/zlib/src/inffixed.h; sourceTree = "<group>"; };
|
||||
433665EC17C568DF00D45AD9 /* inflate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../../src/zlib/src/inflate.c; sourceTree = "<group>"; };
|
||||
433665ED17C568DF00D45AD9 /* inflate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = ../../../src/zlib/src/inflate.h; sourceTree = "<group>"; };
|
||||
433665EE17C568DF00D45AD9 /* inftrees.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../../src/zlib/src/inftrees.c; sourceTree = "<group>"; };
|
||||
433665EF17C568DF00D45AD9 /* inftrees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = ../../../src/zlib/src/inftrees.h; sourceTree = "<group>"; };
|
||||
433665F017C568DF00D45AD9 /* trees.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../../src/zlib/src/trees.c; sourceTree = "<group>"; };
|
||||
433665F117C568DF00D45AD9 /* trees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trees.h; path = ../../../src/zlib/src/trees.h; sourceTree = "<group>"; };
|
||||
433665F217C568DF00D45AD9 /* uncompr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../../src/zlib/src/uncompr.c; sourceTree = "<group>"; };
|
||||
433665F317C568DF00D45AD9 /* zutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../../src/zlib/src/zutil.c; sourceTree = "<group>"; };
|
||||
433665F417C568DF00D45AD9 /* zutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = ../../../src/zlib/src/zutil.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
433665D217C5632600D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
433665CC17C5632600D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433665DC17C5633F00D45AD9 /* src */,
|
||||
433665D617C5632600D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
433665D617C5632600D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433665D517C5632600D45AD9 /* libpng.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
433665DC17C5633F00D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
433665DD17C568DF00D45AD9 /* adler32.c */,
|
||||
433665DE17C568DF00D45AD9 /* compress.c */,
|
||||
433665DF17C568DF00D45AD9 /* crc32.c */,
|
||||
433665E017C568DF00D45AD9 /* crc32.h */,
|
||||
433665E117C568DF00D45AD9 /* deflate.c */,
|
||||
433665E217C568DF00D45AD9 /* deflate.h */,
|
||||
433665E317C568DF00D45AD9 /* gzclose.c */,
|
||||
433665E417C568DF00D45AD9 /* gzguts.h */,
|
||||
433665E517C568DF00D45AD9 /* gzlib.c */,
|
||||
433665E617C568DF00D45AD9 /* gzread.c */,
|
||||
433665E717C568DF00D45AD9 /* gzwrite.c */,
|
||||
433665E817C568DF00D45AD9 /* infback.c */,
|
||||
433665E917C568DF00D45AD9 /* inffast.c */,
|
||||
433665EA17C568DF00D45AD9 /* inffast.h */,
|
||||
433665EB17C568DF00D45AD9 /* inffixed.h */,
|
||||
433665EC17C568DF00D45AD9 /* inflate.c */,
|
||||
433665ED17C568DF00D45AD9 /* inflate.h */,
|
||||
433665EE17C568DF00D45AD9 /* inftrees.c */,
|
||||
433665EF17C568DF00D45AD9 /* inftrees.h */,
|
||||
433665F017C568DF00D45AD9 /* trees.c */,
|
||||
433665F117C568DF00D45AD9 /* trees.h */,
|
||||
433665F217C568DF00D45AD9 /* uncompr.c */,
|
||||
433665F317C568DF00D45AD9 /* zutil.c */,
|
||||
433665F417C568DF00D45AD9 /* zutil.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
433665D317C5632600D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
433665F817C568DF00D45AD9 /* crc32.h in Headers */,
|
||||
433665FA17C568DF00D45AD9 /* deflate.h in Headers */,
|
||||
433665FC17C568DF00D45AD9 /* gzguts.h in Headers */,
|
||||
4336660217C568DF00D45AD9 /* inffast.h in Headers */,
|
||||
4336660317C568DF00D45AD9 /* inffixed.h in Headers */,
|
||||
4336660517C568DF00D45AD9 /* inflate.h in Headers */,
|
||||
4336660717C568DF00D45AD9 /* inftrees.h in Headers */,
|
||||
4336660917C568DF00D45AD9 /* trees.h in Headers */,
|
||||
4336660C17C568DF00D45AD9 /* zutil.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
433665D417C5632600D45AD9 /* png */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 433665D917C5632600D45AD9 /* Build configuration list for PBXNativeTarget "png" */;
|
||||
buildPhases = (
|
||||
433665D117C5632600D45AD9 /* Sources */,
|
||||
433665D217C5632600D45AD9 /* Frameworks */,
|
||||
433665D317C5632600D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = png;
|
||||
productName = png;
|
||||
productReference = 433665D517C5632600D45AD9 /* libpng.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
433665CD17C5632600D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 433665D017C5632600D45AD9 /* Build configuration list for PBXProject "png" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 433665CC17C5632600D45AD9;
|
||||
productRefGroup = 433665D617C5632600D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
433665D417C5632600D45AD9 /* png */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
433665D117C5632600D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
433665F517C568DF00D45AD9 /* adler32.c in Sources */,
|
||||
433665F617C568DF00D45AD9 /* compress.c in Sources */,
|
||||
433665F717C568DF00D45AD9 /* crc32.c in Sources */,
|
||||
433665F917C568DF00D45AD9 /* deflate.c in Sources */,
|
||||
433665FB17C568DF00D45AD9 /* gzclose.c in Sources */,
|
||||
433665FD17C568DF00D45AD9 /* gzlib.c in Sources */,
|
||||
433665FE17C568DF00D45AD9 /* gzread.c in Sources */,
|
||||
433665FF17C568DF00D45AD9 /* gzwrite.c in Sources */,
|
||||
4336660017C568DF00D45AD9 /* infback.c in Sources */,
|
||||
4336660117C568DF00D45AD9 /* inffast.c in Sources */,
|
||||
4336660417C568DF00D45AD9 /* inflate.c in Sources */,
|
||||
4336660617C568DF00D45AD9 /* inftrees.c in Sources */,
|
||||
4336660817C568DF00D45AD9 /* trees.c in Sources */,
|
||||
4336660A17C568DF00D45AD9 /* uncompr.c in Sources */,
|
||||
4336660B17C568DF00D45AD9 /* zutil.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
433665D717C5632600D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
../../../src/libpng/include,
|
||||
../../../src/zlib/include,
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
433665D817C5632600D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
../../../src/libpng/include,
|
||||
../../../src/zlib/include,
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
433665DA17C5632600D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
433665DB17C5632600D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
433665D017C5632600D45AD9 /* Build configuration list for PBXProject "png" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
433665D717C5632600D45AD9 /* Debug */,
|
||||
433665D817C5632600D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
433665D917C5632600D45AD9 /* Build configuration list for PBXNativeTarget "png" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
433665DA17C5632600D45AD9 /* Debug */,
|
||||
433665DB17C5632600D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 433665CD17C5632600D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,242 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4336666917C56B0800D45AD9 /* snappy-c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4336666217C56B0800D45AD9 /* snappy-c.cc */; };
|
||||
4336666A17C56B0800D45AD9 /* snappy-c.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336666317C56B0800D45AD9 /* snappy-c.h */; };
|
||||
4336666B17C56B0800D45AD9 /* snappy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336666417C56B0800D45AD9 /* snappy-internal.h */; };
|
||||
4336666C17C56B0800D45AD9 /* snappy-sinksource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4336666517C56B0800D45AD9 /* snappy-sinksource.cc */; };
|
||||
4336666D17C56B0800D45AD9 /* snappy-sinksource.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336666617C56B0800D45AD9 /* snappy-sinksource.h */; };
|
||||
4336666E17C56B0800D45AD9 /* snappy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4336666717C56B0800D45AD9 /* snappy.cc */; };
|
||||
4336666F17C56B0800D45AD9 /* snappy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336666817C56B0800D45AD9 /* snappy.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
4336665817C56AA300D45AD9 /* libsnappy.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libsnappy.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4336666217C56B0800D45AD9 /* snappy-c.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "snappy-c.cc"; path = "../../../src/snappy/snappy-c.cc"; sourceTree = "<group>"; };
|
||||
4336666317C56B0800D45AD9 /* snappy-c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "snappy-c.h"; path = "../../../src/snappy/snappy-c.h"; sourceTree = "<group>"; };
|
||||
4336666417C56B0800D45AD9 /* snappy-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "snappy-internal.h"; path = "../../../src/snappy/snappy-internal.h"; sourceTree = "<group>"; };
|
||||
4336666517C56B0800D45AD9 /* snappy-sinksource.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "snappy-sinksource.cc"; path = "../../../src/snappy/snappy-sinksource.cc"; sourceTree = "<group>"; };
|
||||
4336666617C56B0800D45AD9 /* snappy-sinksource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "snappy-sinksource.h"; path = "../../../src/snappy/snappy-sinksource.h"; sourceTree = "<group>"; };
|
||||
4336666717C56B0800D45AD9 /* snappy.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = snappy.cc; path = ../../../src/snappy/snappy.cc; sourceTree = "<group>"; };
|
||||
4336666817C56B0800D45AD9 /* snappy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = snappy.h; path = ../../../src/snappy/snappy.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4336665517C56AA300D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4336664F17C56AA300D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336665F17C56AA700D45AD9 /* src */,
|
||||
4336665917C56AA300D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336665917C56AA300D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336665817C56AA300D45AD9 /* libsnappy.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336665F17C56AA700D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336666217C56B0800D45AD9 /* snappy-c.cc */,
|
||||
4336666317C56B0800D45AD9 /* snappy-c.h */,
|
||||
4336666417C56B0800D45AD9 /* snappy-internal.h */,
|
||||
4336666517C56B0800D45AD9 /* snappy-sinksource.cc */,
|
||||
4336666617C56B0800D45AD9 /* snappy-sinksource.h */,
|
||||
4336666717C56B0800D45AD9 /* snappy.cc */,
|
||||
4336666817C56B0800D45AD9 /* snappy.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
4336665617C56AA300D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336666A17C56B0800D45AD9 /* snappy-c.h in Headers */,
|
||||
4336666B17C56B0800D45AD9 /* snappy-internal.h in Headers */,
|
||||
4336666D17C56B0800D45AD9 /* snappy-sinksource.h in Headers */,
|
||||
4336666F17C56B0800D45AD9 /* snappy.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4336665717C56AA300D45AD9 /* snappy */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4336665C17C56AA300D45AD9 /* Build configuration list for PBXNativeTarget "snappy" */;
|
||||
buildPhases = (
|
||||
4336665417C56AA300D45AD9 /* Sources */,
|
||||
4336665517C56AA300D45AD9 /* Frameworks */,
|
||||
4336665617C56AA300D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = snappy;
|
||||
productName = snappy;
|
||||
productReference = 4336665817C56AA300D45AD9 /* libsnappy.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
4336665017C56AA300D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 4336665317C56AA300D45AD9 /* Build configuration list for PBXProject "snappy" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 4336664F17C56AA300D45AD9;
|
||||
productRefGroup = 4336665917C56AA300D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4336665717C56AA300D45AD9 /* snappy */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4336665417C56AA300D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336666917C56B0800D45AD9 /* snappy-c.cc in Sources */,
|
||||
4336666C17C56B0800D45AD9 /* snappy-sinksource.cc in Sources */,
|
||||
4336666E17C56B0800D45AD9 /* snappy.cc in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4336665A17C56AA300D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libstdc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336665B17C56AA300D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libstdc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
4336665D17C56AA300D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336665E17C56AA300D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4336665317C56AA300D45AD9 /* Build configuration list for PBXProject "snappy" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336665A17C56AA300D45AD9 /* Debug */,
|
||||
4336665B17C56AA300D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
4336665C17C56AA300D45AD9 /* Build configuration list for PBXNativeTarget "snappy" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336665D17C56AA300D45AD9 /* Debug */,
|
||||
4336665E17C56AA300D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 4336665017C56AA300D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,308 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4336669917C56B7F00D45AD9 /* alpha.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668117C56B7F00D45AD9 /* alpha.cpp */; };
|
||||
4336669A17C56B7F00D45AD9 /* alpha.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668217C56B7F00D45AD9 /* alpha.h */; };
|
||||
4336669B17C56B7F00D45AD9 /* clusterfit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668317C56B7F00D45AD9 /* clusterfit.cpp */; };
|
||||
4336669C17C56B7F00D45AD9 /* clusterfit.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668417C56B7F00D45AD9 /* clusterfit.h */; };
|
||||
4336669D17C56B7F00D45AD9 /* colourblock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668517C56B7F00D45AD9 /* colourblock.cpp */; };
|
||||
4336669E17C56B7F00D45AD9 /* colourblock.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668617C56B7F00D45AD9 /* colourblock.h */; };
|
||||
4336669F17C56B7F00D45AD9 /* colourfit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668717C56B7F00D45AD9 /* colourfit.cpp */; };
|
||||
433666A017C56B7F00D45AD9 /* colourfit.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668817C56B7F00D45AD9 /* colourfit.h */; };
|
||||
433666A117C56B7F00D45AD9 /* colourset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668917C56B7F00D45AD9 /* colourset.cpp */; };
|
||||
433666A217C56B7F00D45AD9 /* colourset.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668A17C56B7F00D45AD9 /* colourset.h */; };
|
||||
433666A317C56B7F00D45AD9 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668B17C56B7F00D45AD9 /* config.h */; };
|
||||
433666A417C56B7F00D45AD9 /* maths.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668C17C56B7F00D45AD9 /* maths.cpp */; };
|
||||
433666A517C56B7F00D45AD9 /* maths.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668D17C56B7F00D45AD9 /* maths.h */; };
|
||||
433666A617C56B7F00D45AD9 /* rangefit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336668E17C56B7F00D45AD9 /* rangefit.cpp */; };
|
||||
433666A717C56B7F00D45AD9 /* rangefit.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336668F17C56B7F00D45AD9 /* rangefit.h */; };
|
||||
433666A817C56B7F00D45AD9 /* simd_float.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336669017C56B7F00D45AD9 /* simd_float.h */; };
|
||||
433666A917C56B7F00D45AD9 /* simd_sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336669117C56B7F00D45AD9 /* simd_sse.h */; };
|
||||
433666AA17C56B7F00D45AD9 /* simd_ve.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336669217C56B7F00D45AD9 /* simd_ve.h */; };
|
||||
433666AB17C56B7F00D45AD9 /* simd.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336669317C56B7F00D45AD9 /* simd.h */; };
|
||||
433666AC17C56B7F00D45AD9 /* singlecolourfit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336669417C56B7F00D45AD9 /* singlecolourfit.cpp */; };
|
||||
433666AD17C56B7F00D45AD9 /* singlecolourfit.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336669517C56B7F00D45AD9 /* singlecolourfit.h */; };
|
||||
433666AE17C56B7F00D45AD9 /* squish.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4336669717C56B7F00D45AD9 /* squish.cpp */; };
|
||||
433666AF17C56B7F00D45AD9 /* squish.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336669817C56B7F00D45AD9 /* squish.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
4336667917C56B5200D45AD9 /* libsquish.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libsquish.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4336668117C56B7F00D45AD9 /* alpha.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cpp; path = ../../../src/squish/alpha.cpp; sourceTree = "<group>"; };
|
||||
4336668217C56B7F00D45AD9 /* alpha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = alpha.h; path = ../../../src/squish/alpha.h; sourceTree = "<group>"; };
|
||||
4336668317C56B7F00D45AD9 /* clusterfit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = clusterfit.cpp; path = ../../../src/squish/clusterfit.cpp; sourceTree = "<group>"; };
|
||||
4336668417C56B7F00D45AD9 /* clusterfit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clusterfit.h; path = ../../../src/squish/clusterfit.h; sourceTree = "<group>"; };
|
||||
4336668517C56B7F00D45AD9 /* colourblock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = colourblock.cpp; path = ../../../src/squish/colourblock.cpp; sourceTree = "<group>"; };
|
||||
4336668617C56B7F00D45AD9 /* colourblock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = colourblock.h; path = ../../../src/squish/colourblock.h; sourceTree = "<group>"; };
|
||||
4336668717C56B7F00D45AD9 /* colourfit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = colourfit.cpp; path = ../../../src/squish/colourfit.cpp; sourceTree = "<group>"; };
|
||||
4336668817C56B7F00D45AD9 /* colourfit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = colourfit.h; path = ../../../src/squish/colourfit.h; sourceTree = "<group>"; };
|
||||
4336668917C56B7F00D45AD9 /* colourset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = colourset.cpp; path = ../../../src/squish/colourset.cpp; sourceTree = "<group>"; };
|
||||
4336668A17C56B7F00D45AD9 /* colourset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = colourset.h; path = ../../../src/squish/colourset.h; sourceTree = "<group>"; };
|
||||
4336668B17C56B7F00D45AD9 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = ../../../src/squish/config.h; sourceTree = "<group>"; };
|
||||
4336668C17C56B7F00D45AD9 /* maths.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = maths.cpp; path = ../../../src/squish/maths.cpp; sourceTree = "<group>"; };
|
||||
4336668D17C56B7F00D45AD9 /* maths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = maths.h; path = ../../../src/squish/maths.h; sourceTree = "<group>"; };
|
||||
4336668E17C56B7F00D45AD9 /* rangefit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rangefit.cpp; path = ../../../src/squish/rangefit.cpp; sourceTree = "<group>"; };
|
||||
4336668F17C56B7F00D45AD9 /* rangefit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rangefit.h; path = ../../../src/squish/rangefit.h; sourceTree = "<group>"; };
|
||||
4336669017C56B7F00D45AD9 /* simd_float.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = simd_float.h; path = ../../../src/squish/simd_float.h; sourceTree = "<group>"; };
|
||||
4336669117C56B7F00D45AD9 /* simd_sse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = simd_sse.h; path = ../../../src/squish/simd_sse.h; sourceTree = "<group>"; };
|
||||
4336669217C56B7F00D45AD9 /* simd_ve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = simd_ve.h; path = ../../../src/squish/simd_ve.h; sourceTree = "<group>"; };
|
||||
4336669317C56B7F00D45AD9 /* simd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = simd.h; path = ../../../src/squish/simd.h; sourceTree = "<group>"; };
|
||||
4336669417C56B7F00D45AD9 /* singlecolourfit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = singlecolourfit.cpp; path = ../../../src/squish/singlecolourfit.cpp; sourceTree = "<group>"; };
|
||||
4336669517C56B7F00D45AD9 /* singlecolourfit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = singlecolourfit.h; path = ../../../src/squish/singlecolourfit.h; sourceTree = "<group>"; };
|
||||
4336669617C56B7F00D45AD9 /* singlecolourlookup.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = singlecolourlookup.inl; path = ../../../src/squish/singlecolourlookup.inl; sourceTree = "<group>"; };
|
||||
4336669717C56B7F00D45AD9 /* squish.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = squish.cpp; path = ../../../src/squish/squish.cpp; sourceTree = "<group>"; };
|
||||
4336669817C56B7F00D45AD9 /* squish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = squish.h; path = ../../../src/squish/squish.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4336667617C56B5200D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4336667017C56B5200D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336668017C56B5600D45AD9 /* src */,
|
||||
4336667A17C56B5200D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336667A17C56B5200D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336667917C56B5200D45AD9 /* libsquish.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336668017C56B5600D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336668117C56B7F00D45AD9 /* alpha.cpp */,
|
||||
4336668217C56B7F00D45AD9 /* alpha.h */,
|
||||
4336668317C56B7F00D45AD9 /* clusterfit.cpp */,
|
||||
4336668417C56B7F00D45AD9 /* clusterfit.h */,
|
||||
4336668517C56B7F00D45AD9 /* colourblock.cpp */,
|
||||
4336668617C56B7F00D45AD9 /* colourblock.h */,
|
||||
4336668717C56B7F00D45AD9 /* colourfit.cpp */,
|
||||
4336668817C56B7F00D45AD9 /* colourfit.h */,
|
||||
4336668917C56B7F00D45AD9 /* colourset.cpp */,
|
||||
4336668A17C56B7F00D45AD9 /* colourset.h */,
|
||||
4336668B17C56B7F00D45AD9 /* config.h */,
|
||||
4336668C17C56B7F00D45AD9 /* maths.cpp */,
|
||||
4336668D17C56B7F00D45AD9 /* maths.h */,
|
||||
4336668E17C56B7F00D45AD9 /* rangefit.cpp */,
|
||||
4336668F17C56B7F00D45AD9 /* rangefit.h */,
|
||||
4336669317C56B7F00D45AD9 /* simd.h */,
|
||||
4336669017C56B7F00D45AD9 /* simd_float.h */,
|
||||
4336669117C56B7F00D45AD9 /* simd_sse.h */,
|
||||
4336669217C56B7F00D45AD9 /* simd_ve.h */,
|
||||
4336669417C56B7F00D45AD9 /* singlecolourfit.cpp */,
|
||||
4336669517C56B7F00D45AD9 /* singlecolourfit.h */,
|
||||
4336669617C56B7F00D45AD9 /* singlecolourlookup.inl */,
|
||||
4336669717C56B7F00D45AD9 /* squish.cpp */,
|
||||
4336669817C56B7F00D45AD9 /* squish.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
4336667717C56B5200D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336669A17C56B7F00D45AD9 /* alpha.h in Headers */,
|
||||
4336669C17C56B7F00D45AD9 /* clusterfit.h in Headers */,
|
||||
4336669E17C56B7F00D45AD9 /* colourblock.h in Headers */,
|
||||
433666A017C56B7F00D45AD9 /* colourfit.h in Headers */,
|
||||
433666A217C56B7F00D45AD9 /* colourset.h in Headers */,
|
||||
433666A317C56B7F00D45AD9 /* config.h in Headers */,
|
||||
433666A517C56B7F00D45AD9 /* maths.h in Headers */,
|
||||
433666A717C56B7F00D45AD9 /* rangefit.h in Headers */,
|
||||
433666A817C56B7F00D45AD9 /* simd_float.h in Headers */,
|
||||
433666A917C56B7F00D45AD9 /* simd_sse.h in Headers */,
|
||||
433666AA17C56B7F00D45AD9 /* simd_ve.h in Headers */,
|
||||
433666AB17C56B7F00D45AD9 /* simd.h in Headers */,
|
||||
433666AD17C56B7F00D45AD9 /* singlecolourfit.h in Headers */,
|
||||
433666AF17C56B7F00D45AD9 /* squish.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4336667817C56B5200D45AD9 /* squish */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4336667D17C56B5200D45AD9 /* Build configuration list for PBXNativeTarget "squish" */;
|
||||
buildPhases = (
|
||||
4336667517C56B5200D45AD9 /* Sources */,
|
||||
4336667617C56B5200D45AD9 /* Frameworks */,
|
||||
4336667717C56B5200D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = squish;
|
||||
productName = squish;
|
||||
productReference = 4336667917C56B5200D45AD9 /* libsquish.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
4336667117C56B5200D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 4336667417C56B5200D45AD9 /* Build configuration list for PBXProject "squish" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 4336667017C56B5200D45AD9;
|
||||
productRefGroup = 4336667A17C56B5200D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4336667817C56B5200D45AD9 /* squish */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4336667517C56B5200D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336669917C56B7F00D45AD9 /* alpha.cpp in Sources */,
|
||||
4336669B17C56B7F00D45AD9 /* clusterfit.cpp in Sources */,
|
||||
4336669D17C56B7F00D45AD9 /* colourblock.cpp in Sources */,
|
||||
4336669F17C56B7F00D45AD9 /* colourfit.cpp in Sources */,
|
||||
433666A117C56B7F00D45AD9 /* colourset.cpp in Sources */,
|
||||
433666A417C56B7F00D45AD9 /* maths.cpp in Sources */,
|
||||
433666A617C56B7F00D45AD9 /* rangefit.cpp in Sources */,
|
||||
433666AC17C56B7F00D45AD9 /* singlecolourfit.cpp in Sources */,
|
||||
433666AE17C56B7F00D45AD9 /* squish.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4336667B17C56B5200D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336667C17C56B5200D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
4336667E17C56B5200D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336667F17C56B5200D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4336667417C56B5200D45AD9 /* Build configuration list for PBXProject "squish" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336667B17C56B5200D45AD9 /* Debug */,
|
||||
4336667C17C56B5200D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
4336667D17C56B5200D45AD9 /* Build configuration list for PBXNativeTarget "squish" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336667E17C56B5200D45AD9 /* Debug */,
|
||||
4336667F17C56B5200D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 4336667117C56B5200D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,312 +0,0 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4336663717C56A2600D45AD9 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336661E17C56A2600D45AD9 /* adler32.c */; };
|
||||
4336663817C56A2600D45AD9 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336661F17C56A2600D45AD9 /* compress.c */; };
|
||||
4336663917C56A2600D45AD9 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662017C56A2600D45AD9 /* crc32.c */; };
|
||||
4336663A17C56A2600D45AD9 /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336662117C56A2600D45AD9 /* crc32.h */; };
|
||||
4336663B17C56A2600D45AD9 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662217C56A2600D45AD9 /* deflate.c */; };
|
||||
4336663C17C56A2600D45AD9 /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336662317C56A2600D45AD9 /* deflate.h */; };
|
||||
4336663D17C56A2600D45AD9 /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662417C56A2600D45AD9 /* gzclose.c */; };
|
||||
4336663E17C56A2600D45AD9 /* gzguts.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336662517C56A2600D45AD9 /* gzguts.h */; };
|
||||
4336663F17C56A2600D45AD9 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662617C56A2600D45AD9 /* gzlib.c */; };
|
||||
4336664017C56A2600D45AD9 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662717C56A2600D45AD9 /* gzread.c */; };
|
||||
4336664117C56A2600D45AD9 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662817C56A2600D45AD9 /* gzwrite.c */; };
|
||||
4336664217C56A2600D45AD9 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662917C56A2600D45AD9 /* infback.c */; };
|
||||
4336664317C56A2600D45AD9 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662A17C56A2600D45AD9 /* inffast.c */; };
|
||||
4336664417C56A2600D45AD9 /* inffast.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336662B17C56A2600D45AD9 /* inffast.h */; };
|
||||
4336664517C56A2600D45AD9 /* inffixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336662C17C56A2600D45AD9 /* inffixed.h */; };
|
||||
4336664617C56A2600D45AD9 /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662D17C56A2600D45AD9 /* inflate.c */; };
|
||||
4336664717C56A2600D45AD9 /* inflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336662E17C56A2600D45AD9 /* inflate.h */; };
|
||||
4336664817C56A2600D45AD9 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336662F17C56A2600D45AD9 /* inftrees.c */; };
|
||||
4336664917C56A2600D45AD9 /* inftrees.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336663017C56A2600D45AD9 /* inftrees.h */; };
|
||||
4336664A17C56A2600D45AD9 /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336663117C56A2600D45AD9 /* trees.c */; };
|
||||
4336664B17C56A2600D45AD9 /* trees.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336663217C56A2600D45AD9 /* trees.h */; };
|
||||
4336664C17C56A2600D45AD9 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336663317C56A2600D45AD9 /* uncompr.c */; };
|
||||
4336664D17C56A2600D45AD9 /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4336663517C56A2600D45AD9 /* zutil.c */; };
|
||||
4336664E17C56A2600D45AD9 /* zutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4336663617C56A2600D45AD9 /* zutil.h */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
4336661617C56A0800D45AD9 /* libzlib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libzlib.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4336661E17C56A2600D45AD9 /* adler32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../../src/zlib/src/adler32.c; sourceTree = "<group>"; };
|
||||
4336661F17C56A2600D45AD9 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../../src/zlib/src/compress.c; sourceTree = "<group>"; };
|
||||
4336662017C56A2600D45AD9 /* crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../../src/zlib/src/crc32.c; sourceTree = "<group>"; };
|
||||
4336662117C56A2600D45AD9 /* crc32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crc32.h; path = ../../../src/zlib/src/crc32.h; sourceTree = "<group>"; };
|
||||
4336662217C56A2600D45AD9 /* deflate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../../src/zlib/src/deflate.c; sourceTree = "<group>"; };
|
||||
4336662317C56A2600D45AD9 /* deflate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = ../../../src/zlib/src/deflate.h; sourceTree = "<group>"; };
|
||||
4336662417C56A2600D45AD9 /* gzclose.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzclose.c; path = ../../../src/zlib/src/gzclose.c; sourceTree = "<group>"; };
|
||||
4336662517C56A2600D45AD9 /* gzguts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gzguts.h; path = ../../../src/zlib/src/gzguts.h; sourceTree = "<group>"; };
|
||||
4336662617C56A2600D45AD9 /* gzlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzlib.c; path = ../../../src/zlib/src/gzlib.c; sourceTree = "<group>"; };
|
||||
4336662717C56A2600D45AD9 /* gzread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzread.c; path = ../../../src/zlib/src/gzread.c; sourceTree = "<group>"; };
|
||||
4336662817C56A2600D45AD9 /* gzwrite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gzwrite.c; path = ../../../src/zlib/src/gzwrite.c; sourceTree = "<group>"; };
|
||||
4336662917C56A2600D45AD9 /* infback.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../../src/zlib/src/infback.c; sourceTree = "<group>"; };
|
||||
4336662A17C56A2600D45AD9 /* inffast.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../../src/zlib/src/inffast.c; sourceTree = "<group>"; };
|
||||
4336662B17C56A2600D45AD9 /* inffast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = ../../../src/zlib/src/inffast.h; sourceTree = "<group>"; };
|
||||
4336662C17C56A2600D45AD9 /* inffixed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = ../../../src/zlib/src/inffixed.h; sourceTree = "<group>"; };
|
||||
4336662D17C56A2600D45AD9 /* inflate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../../src/zlib/src/inflate.c; sourceTree = "<group>"; };
|
||||
4336662E17C56A2600D45AD9 /* inflate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = ../../../src/zlib/src/inflate.h; sourceTree = "<group>"; };
|
||||
4336662F17C56A2600D45AD9 /* inftrees.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../../src/zlib/src/inftrees.c; sourceTree = "<group>"; };
|
||||
4336663017C56A2600D45AD9 /* inftrees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = ../../../src/zlib/src/inftrees.h; sourceTree = "<group>"; };
|
||||
4336663117C56A2600D45AD9 /* trees.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../../src/zlib/src/trees.c; sourceTree = "<group>"; };
|
||||
4336663217C56A2600D45AD9 /* trees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trees.h; path = ../../../src/zlib/src/trees.h; sourceTree = "<group>"; };
|
||||
4336663317C56A2600D45AD9 /* uncompr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../../src/zlib/src/uncompr.c; sourceTree = "<group>"; };
|
||||
4336663517C56A2600D45AD9 /* zutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../../src/zlib/src/zutil.c; sourceTree = "<group>"; };
|
||||
4336663617C56A2600D45AD9 /* zutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = ../../../src/zlib/src/zutil.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4336661317C56A0800D45AD9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4336660D17C56A0800D45AD9 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336661D17C56A1300D45AD9 /* src */,
|
||||
4336661717C56A0800D45AD9 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336661717C56A0800D45AD9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336661617C56A0800D45AD9 /* libzlib.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4336661D17C56A1300D45AD9 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4336661E17C56A2600D45AD9 /* adler32.c */,
|
||||
4336661F17C56A2600D45AD9 /* compress.c */,
|
||||
4336662017C56A2600D45AD9 /* crc32.c */,
|
||||
4336662117C56A2600D45AD9 /* crc32.h */,
|
||||
4336662217C56A2600D45AD9 /* deflate.c */,
|
||||
4336662317C56A2600D45AD9 /* deflate.h */,
|
||||
4336662417C56A2600D45AD9 /* gzclose.c */,
|
||||
4336662517C56A2600D45AD9 /* gzguts.h */,
|
||||
4336662617C56A2600D45AD9 /* gzlib.c */,
|
||||
4336662717C56A2600D45AD9 /* gzread.c */,
|
||||
4336662817C56A2600D45AD9 /* gzwrite.c */,
|
||||
4336662917C56A2600D45AD9 /* infback.c */,
|
||||
4336662A17C56A2600D45AD9 /* inffast.c */,
|
||||
4336662B17C56A2600D45AD9 /* inffast.h */,
|
||||
4336662C17C56A2600D45AD9 /* inffixed.h */,
|
||||
4336662D17C56A2600D45AD9 /* inflate.c */,
|
||||
4336662E17C56A2600D45AD9 /* inflate.h */,
|
||||
4336662F17C56A2600D45AD9 /* inftrees.c */,
|
||||
4336663017C56A2600D45AD9 /* inftrees.h */,
|
||||
4336663117C56A2600D45AD9 /* trees.c */,
|
||||
4336663217C56A2600D45AD9 /* trees.h */,
|
||||
4336663317C56A2600D45AD9 /* uncompr.c */,
|
||||
4336663517C56A2600D45AD9 /* zutil.c */,
|
||||
4336663617C56A2600D45AD9 /* zutil.h */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
4336661417C56A0800D45AD9 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336663A17C56A2600D45AD9 /* crc32.h in Headers */,
|
||||
4336663C17C56A2600D45AD9 /* deflate.h in Headers */,
|
||||
4336663E17C56A2600D45AD9 /* gzguts.h in Headers */,
|
||||
4336664417C56A2600D45AD9 /* inffast.h in Headers */,
|
||||
4336664517C56A2600D45AD9 /* inffixed.h in Headers */,
|
||||
4336664717C56A2600D45AD9 /* inflate.h in Headers */,
|
||||
4336664917C56A2600D45AD9 /* inftrees.h in Headers */,
|
||||
4336664B17C56A2600D45AD9 /* trees.h in Headers */,
|
||||
4336664E17C56A2600D45AD9 /* zutil.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4336661517C56A0800D45AD9 /* zlib */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4336661A17C56A0800D45AD9 /* Build configuration list for PBXNativeTarget "zlib" */;
|
||||
buildPhases = (
|
||||
4336661217C56A0800D45AD9 /* Sources */,
|
||||
4336661317C56A0800D45AD9 /* Frameworks */,
|
||||
4336661417C56A0800D45AD9 /* Headers */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = zlib;
|
||||
productName = zlib;
|
||||
productReference = 4336661617C56A0800D45AD9 /* libzlib.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
4336660E17C56A0800D45AD9 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0460;
|
||||
ORGANIZATIONNAME = "Cass Everitt";
|
||||
};
|
||||
buildConfigurationList = 4336661117C56A0800D45AD9 /* Build configuration list for PBXProject "zlib" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 4336660D17C56A0800D45AD9;
|
||||
productRefGroup = 4336661717C56A0800D45AD9 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4336661517C56A0800D45AD9 /* zlib */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4336661217C56A0800D45AD9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4336663717C56A2600D45AD9 /* adler32.c in Sources */,
|
||||
4336663817C56A2600D45AD9 /* compress.c in Sources */,
|
||||
4336663917C56A2600D45AD9 /* crc32.c in Sources */,
|
||||
4336663B17C56A2600D45AD9 /* deflate.c in Sources */,
|
||||
4336663D17C56A2600D45AD9 /* gzclose.c in Sources */,
|
||||
4336663F17C56A2600D45AD9 /* gzlib.c in Sources */,
|
||||
4336664017C56A2600D45AD9 /* gzread.c in Sources */,
|
||||
4336664117C56A2600D45AD9 /* gzwrite.c in Sources */,
|
||||
4336664217C56A2600D45AD9 /* infback.c in Sources */,
|
||||
4336664317C56A2600D45AD9 /* inffast.c in Sources */,
|
||||
4336664617C56A2600D45AD9 /* inflate.c in Sources */,
|
||||
4336664817C56A2600D45AD9 /* inftrees.c in Sources */,
|
||||
4336664A17C56A2600D45AD9 /* trees.c in Sources */,
|
||||
4336664C17C56A2600D45AD9 /* uncompr.c in Sources */,
|
||||
4336664D17C56A2600D45AD9 /* zutil.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4336661817C56A0800D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = ../../../src/zlib/include;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336661917C56A0800D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = ../../../src/zlib/include;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
SDKROOT = "";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
4336661B17C56A0800D45AD9 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
4336661C17C56A0800D45AD9 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
EXECUTABLE_PREFIX = lib;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4336661117C56A0800D45AD9 /* Build configuration list for PBXProject "zlib" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336661817C56A0800D45AD9 /* Debug */,
|
||||
4336661917C56A0800D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
4336661A17C56A0800D45AD9 /* Build configuration list for PBXNativeTarget "zlib" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4336661B17C56A0800D45AD9 /* Debug */,
|
||||
4336661C17C56A0800D45AD9 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 4336660E17C56A0800D45AD9 /* Project object */;
|
||||
}
|
||||
|
|
@ -1,98 +0,0 @@
|
|||
# pcre.inc
|
||||
#
|
||||
# Generic gnumake .inc for building pcre
|
||||
#
|
||||
|
||||
# Sources
|
||||
|
||||
PCRE.C :=
|
||||
#PCRE.C += src/pcre/dftables.c
|
||||
PCRE.C += src/pcre/pcre16_byte_order.c
|
||||
PCRE.C += src/pcre/pcre16_chartables.c
|
||||
PCRE.C += src/pcre/pcre16_compile.c
|
||||
PCRE.C += src/pcre/pcre16_config.c
|
||||
PCRE.C += src/pcre/pcre16_dfa_exec.c
|
||||
PCRE.C += src/pcre/pcre16_exec.c
|
||||
PCRE.C += src/pcre/pcre16_fullinfo.c
|
||||
PCRE.C += src/pcre/pcre16_get.c
|
||||
PCRE.C += src/pcre/pcre16_globals.c
|
||||
PCRE.C += src/pcre/pcre16_jit_compile.c
|
||||
PCRE.C += src/pcre/pcre16_maketables.c
|
||||
PCRE.C += src/pcre/pcre16_newline.c
|
||||
PCRE.C += src/pcre/pcre16_ord2utf16.c
|
||||
PCRE.C += src/pcre/pcre16_printint.c
|
||||
PCRE.C += src/pcre/pcre16_refcount.c
|
||||
PCRE.C += src/pcre/pcre16_string_utils.c
|
||||
PCRE.C += src/pcre/pcre16_study.c
|
||||
PCRE.C += src/pcre/pcre16_tables.c
|
||||
PCRE.C += src/pcre/pcre16_ucd.c
|
||||
PCRE.C += src/pcre/pcre16_utf16_utils.c
|
||||
PCRE.C += src/pcre/pcre16_valid_utf16.c
|
||||
PCRE.C += src/pcre/pcre16_version.c
|
||||
PCRE.C += src/pcre/pcre16_xclass.c
|
||||
PCRE.C += src/pcre/pcre32_byte_order.c
|
||||
PCRE.C += src/pcre/pcre32_chartables.c
|
||||
PCRE.C += src/pcre/pcre32_compile.c
|
||||
PCRE.C += src/pcre/pcre32_config.c
|
||||
PCRE.C += src/pcre/pcre32_dfa_exec.c
|
||||
PCRE.C += src/pcre/pcre32_exec.c
|
||||
PCRE.C += src/pcre/pcre32_fullinfo.c
|
||||
PCRE.C += src/pcre/pcre32_get.c
|
||||
PCRE.C += src/pcre/pcre32_globals.c
|
||||
PCRE.C += src/pcre/pcre32_jit_compile.c
|
||||
PCRE.C += src/pcre/pcre32_maketables.c
|
||||
PCRE.C += src/pcre/pcre32_newline.c
|
||||
PCRE.C += src/pcre/pcre32_ord2utf32.c
|
||||
PCRE.C += src/pcre/pcre32_printint.c
|
||||
PCRE.C += src/pcre/pcre32_refcount.c
|
||||
PCRE.C += src/pcre/pcre32_string_utils.c
|
||||
PCRE.C += src/pcre/pcre32_study.c
|
||||
PCRE.C += src/pcre/pcre32_tables.c
|
||||
PCRE.C += src/pcre/pcre32_ucd.c
|
||||
PCRE.C += src/pcre/pcre32_utf32_utils.c
|
||||
PCRE.C += src/pcre/pcre32_valid_utf32.c
|
||||
PCRE.C += src/pcre/pcre32_version.c
|
||||
PCRE.C += src/pcre/pcre32_xclass.c
|
||||
PCRE.C += src/pcre/pcre_byte_order.c
|
||||
PCRE.C += src/pcre/pcre_chartables.c
|
||||
PCRE.C += src/pcre/pcre_compile.c
|
||||
PCRE.C += src/pcre/pcre_config.c
|
||||
#PCRE.C += src/pcre/pcredemo.c
|
||||
PCRE.C += src/pcre/pcre_dfa_exec.c
|
||||
PCRE.C += src/pcre/pcre_exec.c
|
||||
PCRE.C += src/pcre/pcre_fullinfo.c
|
||||
PCRE.C += src/pcre/pcre_get.c
|
||||
PCRE.C += src/pcre/pcre_globals.c
|
||||
#PCRE.C += src/pcre/pcregrep.c
|
||||
PCRE.C += src/pcre/pcre_jit_compile.c
|
||||
#PCRE.C += src/pcre/pcre_jit_test.c
|
||||
PCRE.C += src/pcre/pcre_maketables.c
|
||||
PCRE.C += src/pcre/pcre_newline.c
|
||||
PCRE.C += src/pcre/pcre_ord2utf8.c
|
||||
PCRE.C += src/pcre/pcreposix.c
|
||||
PCRE.C += src/pcre/pcre_printint.c
|
||||
PCRE.C += src/pcre/pcre_refcount.c
|
||||
PCRE.C += src/pcre/pcre_string_utils.c
|
||||
PCRE.C += src/pcre/pcre_study.c
|
||||
PCRE.C += src/pcre/pcre_tables.c
|
||||
#PCRE.C += src/pcre/pcretest.c
|
||||
PCRE.C += src/pcre/pcre_ucd.c
|
||||
PCRE.C += src/pcre/pcre_valid_utf8.c
|
||||
PCRE.C += src/pcre/pcre_version.c
|
||||
PCRE.C += src/pcre/pcre_xclass.c
|
||||
|
||||
# Internal Headers
|
||||
# seth: is this used for dependencies?
|
||||
PCRE.H :=
|
||||
|
||||
# Other Headers
|
||||
# seth: do all of these need to be specified?
|
||||
PCRE.H.OTHER :=
|
||||
|
||||
#
|
||||
# Includes
|
||||
|
||||
PCRE.INCLUDE :=
|
||||
PCRE.INCLUDE += -Isrc/pcre
|
||||
|
||||
PCRE.STATIC ?= libpcre.a
|
||||
|
|
@ -25,7 +25,7 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalglewlib", "Regalglewli
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "civetweblib", "civetweblib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "mongooselib", "mongooselib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Regalmlib", "Regalmlib.vcxp
|
|||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "civetweblib", "civetweblib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongooselib", "mongooselib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "md5lib", "md5lib.vcxproj", "{EF516F6A-1965-7089-C2CA-65778D394F08}"
|
||||
EndProject
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\Win32\regal32.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -110,7 +110,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -126,7 +126,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\Win32\regal32.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -148,13 +148,13 @@
|
|||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">
|
||||
<Link>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;jsonsllib.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;kernel32.lib;winspool.lib;comdlg32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib</AdditionalDependencies>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;jsonsllib.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;kernel32.lib;winspool.lib;comdlg32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib</AdditionalDependencies>
|
||||
<ModuleDefinitionFile>../../../../src/regal/RegalPPAPI.def</ModuleDefinitionFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<AdditionalLibraryDirectories>$(ProjectDir)..\..\..\..\lib\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/jsonsl;../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/jsonsl;../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
|
|
@ -163,16 +163,16 @@
|
|||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">
|
||||
<Link>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;jsonsllib.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;kernel32.lib;winspool.lib;comdlg32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib</AdditionalDependencies>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;jsonsllib.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;kernel32.lib;winspool.lib;comdlg32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib</AdditionalDependencies>
|
||||
<ModuleDefinitionFile>../../../../src/regal/RegalPPAPI.def</ModuleDefinitionFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<AdditionalLibraryDirectories>$(ProjectDir)..\..\..\..\lib\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/jsonsl;../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/jsonsl;../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS=1;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;JSONSL_STATE_GENERIC=1;DNDEBUG;REGAL_DECL_EXPORT=1;REGAL_LOG=0;REGAL_LOG_ALL=0;REGAL_LOG_ONCE=0;REGAL_LOG_JSON=0;REGAL_HTTP=0;REGAL_NO_ASSERT=1;REGAL_NO_PNG=1;REGAL_ERROR=0;REGAL_DEBUG=0;REGAL_CACHE=0;REGAL_EMULATION=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS=1;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;JSONSL_STATE_GENERIC=1;DNDEBUG;REGAL_DECL_EXPORT=1;REGAL_LOG=0;REGAL_LOG_ALL=0;REGAL_LOG_ONCE=0;REGAL_LOG_JSON=0;REGAL_NO_HTTP=1;REGAL_NO_ASSERT=1;REGAL_NO_PNG=1;REGAL_ERROR=0;REGAL_DEBUG=0;REGAL_CACHE=0;REGAL_EMULATION=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
</ClCompile>
|
||||
|
|
@ -279,4 +279,4 @@
|
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
|
|
@ -166,7 +166,7 @@
|
|||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_NAMESPACE;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -82,7 +82,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\Win32\regalm32.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -104,7 +104,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_NAMESPACE;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\Win32\regalm32.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -142,12 +142,12 @@
|
|||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">
|
||||
<Link>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
<ModuleDefinitionFile>../../../../src/regal/RegalPPAPI.def</ModuleDefinitionFile>
|
||||
<AdditionalLibraryDirectories>win\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
|
|
@ -155,12 +155,12 @@
|
|||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">
|
||||
<Link>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
<ModuleDefinitionFile>../../../../src/regal/RegalPPAPI.def</ModuleDefinitionFile>
|
||||
<AdditionalLibraryDirectories>win\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_NAMESPACE;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_NAMESPACE;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<PreprocessorDefinitions>PPAPI;REGAL_NO_TLS;REGAL_WIN_TLS=0;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\Win32\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\x64\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\Win32\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -206,7 +206,7 @@
|
|||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\x64\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\Win32\dreamtorus_static.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\x64\dreamtorus_static.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\Win32\dreamtorus_static.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -206,7 +206,7 @@
|
|||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>winmm.lib;ws2_32.lib;regalglutlib.lib;regalglulib.lib;regallib.lib;mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\x64\dreamtorus_static.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>civetweblib</ProjectName>
|
||||
<ProjectName>mongooselib</ProjectName>
|
||||
<ProjectGuid>{256E64B8-F766-061C-45F8-25B51B7CA24E}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
|
|
@ -52,9 +52,9 @@
|
|||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\mongooselib\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\mongooselib\</IntDir>
|
||||
<NaClAddInVersion Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">1</NaClAddInVersion>
|
||||
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">$(VSNaClSDKRoot)include;$(VSNaClSDKRoot)include\win;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSdkDir)include;$(FrameworkSDKDir)\include;</IncludePath>
|
||||
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">$(VSNaClSDKRoot)lib\win_x86_32_host\$(Configuration);$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSdkDir)lib;$(FrameworkSDKDir)\lib</LibraryPath>
|
||||
|
|
@ -63,8 +63,8 @@
|
|||
<IncludePath Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">$(VSNaClSDKRoot)include;$(VSNaClSDKRoot)include\win;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSdkDir)include;$(FrameworkSDKDir)\include;</IncludePath>
|
||||
<LibraryPath Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">$(VSNaClSDKRoot)lib\win_x86_32_host\$(Configuration);$(VCInstallDir)lib;$(VCInstallDir)atlmfc\lib;$(WindowsSdkDir)lib;$(FrameworkSDKDir)\lib</LibraryPath>
|
||||
<ExecutablePath Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">$(VCInstallDir)bin;$(WindowsSdkDir)bin\NETFX 4.0 Tools;$(WindowsSdkDir)bin;$(VSInstallDir)Common7\Tools\bin;$(VSInstallDir)Common7\tools;$(VSInstallDir)Common7\ide;$(ProgramFiles)\HTML Help Workshop;$(FrameworkSDKDir)\bin;$(MSBuildToolsPath32);$(VSInstallDir);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">win\$(Configuration)\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">win\$(Configuration)\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">win\$(Configuration)\mongooselib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">win\$(Configuration)\mongooselib\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|PPAPI'">$(ProjectDir)..\..\..\..\lib\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|PPAPI'">$(ProjectDir)..\..\..\..\lib\</OutDir>
|
||||
</PropertyGroup>
|
||||
|
|
@ -72,16 +72,16 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\civetweblib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\civetweblib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\civetweblib.pdb</ProgramDataBaseFileName>
|
||||
<AssemblerListingLocation>Release\Win32\mongooselib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\mongooselib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\mongooselib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
|
|
@ -89,15 +89,15 @@
|
|||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\Win32\civetweblib.lib</OutputFile>
|
||||
<OutputFile>Release\Win32\mongooselib.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>
|
||||
</ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\civetweblib.pdb</ProgramDatabaseFile>
|
||||
<ProgramDatabaseFile>Release\Win32\mongooselib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\civetweblib.lib</ImportLibrary>
|
||||
<ImportLibrary>Release\Win32\mongooselib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
|
|
@ -111,15 +111,15 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\civetweblib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\civetweblib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\civetweblib.pdb</ProgramDataBaseFileName>
|
||||
<AssemblerListingLocation>Debug\Win32\mongooselib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\mongooselib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\mongooselib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
|
|
@ -128,16 +128,16 @@
|
|||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\Win32\civetweblib.lib</OutputFile>
|
||||
<OutputFile>Debug\Win32\mongooselib.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>
|
||||
</ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\civetweblib.pdb</ProgramDatabaseFile>
|
||||
<ProgramDatabaseFile>Debug\Win32\mongooselib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\civetweblib.lib</ImportLibrary>
|
||||
<ImportLibrary>Debug\Win32\mongooselib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
|
|
@ -166,7 +166,7 @@
|
|||
<AdditionalDependencies>ppapi_cpp.lib;ppapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;</AdditionalDependencies>
|
||||
</Link>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
|
|
@ -178,7 +178,7 @@
|
|||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\civetweb\civetweb.c" />
|
||||
<ClCompile Include="..\..\..\..\src\mongoose\mongoose.c" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
|
|
@ -5,17 +5,12 @@
|
|||
|
||||
# Regal Sources
|
||||
|
||||
REGAL.CXX :=
|
||||
REGAL.CXX += src/regal/RegalShaderInstance.cpp
|
||||
REGAL.CXX += src/regal/RegalIff.cpp
|
||||
REGAL.CXX += src/regal/RegalQuads.cpp
|
||||
REGAL.CXX += src/regal/Regal.cpp
|
||||
REGAL.CXX += src/regal/RegalLog.cpp
|
||||
REGAL.CXX += src/regal/RegalInit.cpp
|
||||
REGAL.CXX += src/regal/RegalBreak.cpp
|
||||
REGAL.CXX += src/regal/RegalUtil.cpp
|
||||
REGAL.CXX += src/regal/RegalEmu.cpp
|
||||
REGAL.CXX += src/regal/RegalEmuInfo.cpp
|
||||
REGAL.CXX += src/regal/RegalFrame.cpp
|
||||
REGAL.CXX += src/regal/RegalHelper.cpp
|
||||
REGAL.CXX += src/regal/RegalMarker.cpp
|
||||
|
|
@ -25,18 +20,15 @@ REGAL.CXX += src/regal/RegalCacheTexture.cpp
|
|||
REGAL.CXX += src/regal/RegalConfig.cpp
|
||||
REGAL.CXX += src/regal/RegalContext.cpp
|
||||
REGAL.CXX += src/regal/RegalContextInfo.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatch.cpp
|
||||
REGAL.CXX += src/regal/RegalStatistics.cpp
|
||||
REGAL.CXX += src/regal/RegalLookup.cpp
|
||||
REGAL.CXX += src/regal/RegalPlugin.cpp
|
||||
REGAL.CXX += src/regal/RegalShader.cpp
|
||||
REGAL.CXX += src/regal/RegalToken.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchGlobal.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatcher.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatcherGL.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatcherGlobal.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchEmu.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchGLX.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchLog.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchCode.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchCache.cpp
|
||||
|
|
@ -51,19 +43,16 @@ REGAL.CXX += src/regal/RegalDispatchTrace.cpp
|
|||
REGAL.CXX += src/regal/RegalDispatchMissing.cpp
|
||||
REGAL.CXX += src/regal/RegalPixelConversions.cpp
|
||||
REGAL.CXX += src/regal/RegalHttp.cpp
|
||||
REGAL.CXX += src/regal/RegalDispatchHttp.cpp
|
||||
REGAL.CXX += src/regal/RegalJson.cpp
|
||||
REGAL.CXX += src/regal/RegalFavicon.cpp
|
||||
REGAL.CXX += src/regal/RegalMac.cpp
|
||||
REGAL.CXX += src/regal/RegalSo.cpp
|
||||
REGAL.CXX += src/regal/RegalFilt.cpp
|
||||
REGAL.CXX += src/regal/RegalXfer.cpp
|
||||
REGAL.CXX += src/regal/RegalX11.cpp
|
||||
REGAL.CXX += src/regal/RegalDllMain.cpp
|
||||
|
||||
# Regal Internal Headers
|
||||
|
||||
REGAL.H :=
|
||||
REGAL.H += src/regal/RegalBin.h
|
||||
REGAL.H += src/regal/RegalBreak.h
|
||||
REGAL.H += src/regal/RegalCacheShader.h
|
||||
|
|
@ -80,7 +69,6 @@ REGAL.H += src/regal/RegalDispatcherGL.h
|
|||
REGAL.H += src/regal/RegalDispatcherGlobal.h
|
||||
REGAL.H += src/regal/RegalDsa.h
|
||||
REGAL.H += src/regal/RegalEmu.h
|
||||
REGAL.H += src/regal/RegalEmuInfo.h
|
||||
REGAL.H += src/regal/RegalEnum.h
|
||||
REGAL.H += src/regal/RegalFavicon.h
|
||||
REGAL.H += src/regal/RegalFilt.h
|
||||
|
|
@ -88,17 +76,14 @@ REGAL.H += src/regal/RegalXfer.h
|
|||
REGAL.H += src/regal/RegalFrame.h
|
||||
REGAL.H += src/regal/RegalHelper.h
|
||||
REGAL.H += src/regal/RegalHttp.h
|
||||
REGAL.H += src/regal/RegalDispatchHttp.h
|
||||
REGAL.H += src/regal/RegalJson.h
|
||||
REGAL.H += src/regal/RegalJson.inl
|
||||
REGAL.H += src/regal/RegalIff.h
|
||||
REGAL.H += src/regal/RegalQuads.h
|
||||
REGAL.H += src/regal/RegalInit.h
|
||||
REGAL.H += src/regal/RegalLog.h
|
||||
REGAL.H += src/regal/RegalLookup.h
|
||||
REGAL.H += src/regal/RegalMarker.h
|
||||
REGAL.H += src/regal/RegalNamespace.h
|
||||
REGAL.H += src/regal/RegalShader.h
|
||||
REGAL.H += src/regal/RegalTexC.h
|
||||
REGAL.H += src/regal/RegalTexSto.h
|
||||
REGAL.H += src/regal/RegalMac.h
|
||||
|
|
@ -127,31 +112,19 @@ REGAL.H += src/regal/pch.h
|
|||
|
||||
# Other Regal Headers
|
||||
|
||||
REGAL.H.OTHER :=
|
||||
REGAL.H.OTHER += include/GL/Regal.h
|
||||
REGAL.H.OTHER += src/lookup3/lookup3.h
|
||||
|
||||
#
|
||||
|
||||
|
||||
REGAL.INCLUDE :=
|
||||
REGAL.INCLUDE += -Isrc/regal
|
||||
REGAL.INCLUDE := -Isrc/regal
|
||||
REGAL.INCLUDE += -Isrc/zlib/include
|
||||
REGAL.INCLUDE += -Isrc/libpng/include
|
||||
REGAL.INCLUDE += -Isrc/civetweb
|
||||
REGAL.INCLUDE += -Isrc/mongoose
|
||||
REGAL.INCLUDE += -Isrc/md5/include
|
||||
REGAL.INCLUDE += -Isrc/lookup3
|
||||
REGAL.INCLUDE += -Isrc/pcre
|
||||
REGAL.INCLUDE += -Isrc/jsonsl
|
||||
REGAL.INCLUDE += -Isrc/boost
|
||||
|
||||
REGAL.INCLUDE += -Isrc/glsl/include
|
||||
REGAL.INCLUDE += -Isrc/glsl/src/glsl
|
||||
REGAL.INCLUDE += -Isrc/glsl/src/mesa
|
||||
|
||||
ifeq ($(PROFILE_OS),Windows)
|
||||
REGAL.INCLUDE += -Isrc/glsl/include/c99
|
||||
endif
|
||||
|
||||
REGAL.STATIC ?= libRegallib.a
|
||||
REGAL.SHARED ?= libRegal.so
|
||||
|
|
|
|||
|
|
@ -6,12 +6,10 @@
|
|||
|
||||
# snappy sources
|
||||
|
||||
SNAPPY.CXX :=
|
||||
SNAPPY.CXX += src/snappy/snappy-c.cc
|
||||
SNAPPY.CXX += src/snappy/snappy-sinksource.cc
|
||||
SNAPPY.CXX += src/snappy/snappy.cc
|
||||
|
||||
SNAPPY.H :=
|
||||
SNAPPY.H += src/snappy/snappy-c.h
|
||||
SNAPPY.H += src/snappy/snappy-internal.h
|
||||
SNAPPY.H += src/snappy/snappy-sinksource.h
|
||||
|
|
@ -19,7 +17,7 @@ SNAPPY.H += src/snappy/snappy-stubs-internal.h
|
|||
SNAPPY.H += src/snappy/snappy-stubs-public.h
|
||||
SNAPPY.H += src/snappy/snappy.h
|
||||
|
||||
SNAPPY.H.OTHER :=
|
||||
SNAPPY.H.OTHER :=
|
||||
|
||||
#
|
||||
|
||||
|
|
|
|||
|
|
@ -53,8 +53,8 @@ WAFFLE.C.X11 += src/waffle/src/x11/x11_display.c
|
|||
WAFFLE.C.LINUX += src/waffle/src/linux/linux_platform.c
|
||||
WAFFLE.C.LINUX += src/waffle/src/linux/linux_dl.c
|
||||
|
||||
#
|
||||
#
|
||||
|
||||
WAFFLE.H :=
|
||||
|
||||
WAFFLE.H.OTHER :=
|
||||
WAFFLE.H.OTHER :=
|
||||
|
|
|
|||
|
|
@ -2,15 +2,13 @@ Microsoft Visual Studio Solution File, Format Version 11.00
|
|||
# Visual Studio 2010
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regal", "Regal.vcxproj", "{6B2786AC-DF6B-8B13-DE42-875D8D9194D9}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {DF066256-E0AD-E016-6F07-52E868F96C02}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {256E64B8-F766-061C-45F8-25B51B7CA24E}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {EF516F6A-1965-7089-C2CA-65778D394F08}
|
||||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {9C419167-D705-A241-8927-763A6F9A5016}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64} = {27193EF0-3CCB-8553-C48A-271082615A64}
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21} = {A996811D-4FA1-5874-A99B-81B8A0F3AA21}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {E3BB0211-87AF-58EF-3C65-999758F666FD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -20,15 +18,13 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regallib", "Regallib.vcxpro
|
|||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalm", "Regalm.vcxproj", "{687DE0BC-8B42-53E9-FB1A-C750ED5CD57C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {DF066256-E0AD-E016-6F07-52E868F96C02}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {256E64B8-F766-061C-45F8-25B51B7CA24E}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {EF516F6A-1965-7089-C2CA-65778D394F08}
|
||||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {9C419167-D705-A241-8927-763A6F9A5016}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64} = {27193EF0-3CCB-8553-C48A-271082615A64}
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21} = {A996811D-4FA1-5874-A99B-81B8A0F3AA21}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {E3BB0211-87AF-58EF-3C65-999758F666FD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -36,12 +32,7 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalmlib", "Regalmlib.vcxp
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalw", "Regalw.vcxproj", "{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "civetweblib", "civetweblib.vcxproj", "{DF066256-E0AD-E016-6F07-52E868F96C02}"
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "mongooselib", "mongooselib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -58,10 +49,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pnglib", "pnglib.vcxproj",
|
|||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pcrelib", "pcrelib.vcxproj", "{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "jsonsllib", "jsonsllib.vcxproj", "{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -74,10 +61,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "apitracelib", "apitracelib.
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "glsloptlib", "glsloptlib.vcxproj", "{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "snappylib", "snappylib.vcxproj", "{E3BB0211-87AF-58EF-3C65-999758F666FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -126,13 +109,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "dreamtorus", "dreamtorus.vc
|
|||
{D0E3B182-FE11-0FF9-FD65-CBEFAAB35A3E} = {D0E3B182-FE11-0FF9-FD65-CBEFAAB35A3E}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "alphatorus", "alphatorus.vcxproj", "{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{6B2786AC-DF6B-8B13-DE42-875D8D9194D9} = {6B2786AC-DF6B-8B13-DE42-875D8D9194D9}
|
||||
{2CD8FF4D-DAF2-3CA0-CBBB-8A3F7C33CA32} = {2CD8FF4D-DAF2-3CA0-CBBB-8A3F7C33CA32}
|
||||
{D0E3B182-FE11-0FF9-FD65-CBEFAAB35A3E} = {D0E3B182-FE11-0FF9-FD65-CBEFAAB35A3E}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "tiger", "tiger.vcxproj", "{CC6D2AA2-765F-3405-4DF6-DC537EE16992}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{6B2786AC-DF6B-8B13-DE42-875D8D9194D9} = {6B2786AC-DF6B-8B13-DE42-875D8D9194D9}
|
||||
|
|
@ -144,14 +120,12 @@ EndProject
|
|||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "dreamtorus_static", "dreamtorus_static.vcxproj", "{4279720C-503C-C9A3-8714-4E88F1D2B1E0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{863337BC-C6F9-E4E8-C27D-2D6BAFF72E18} = {863337BC-C6F9-E4E8-C27D-2D6BAFF72E18}
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {DF066256-E0AD-E016-6F07-52E868F96C02}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {256E64B8-F766-061C-45F8-25B51B7CA24E}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {EF516F6A-1965-7089-C2CA-65778D394F08}
|
||||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {9C419167-D705-A241-8927-763A6F9A5016}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21} = {A996811D-4FA1-5874-A99B-81B8A0F3AA21}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {E3BB0211-87AF-58EF-3C65-999758F666FD}
|
||||
{70EF5244-5141-EC9E-11A6-7B6DD126FFFA} = {70EF5244-5141-EC9E-11A6-7B6DD126FFFA}
|
||||
{476C0BD6-57F1-93F9-0E06-2E90D934A88F} = {476C0BD6-57F1-93F9-0E06-2E90D934A88F}
|
||||
|
|
@ -208,22 +182,14 @@ Global
|
|||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0}.Release|x64.Build.0 = Release|x64
|
||||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0}.Release|x64.ActiveCfg = Release|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|x64.Build.0 = Debug|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|Win32.Build.0 = Release|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|x64.Build.0 = Release|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|x64.ActiveCfg = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.Build.0 = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.Build.0 = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.Build.0 = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.ActiveCfg = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.Build.0 = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.Build.0 = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.Build.0 = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.ActiveCfg = Release|x64
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -248,14 +214,6 @@ Global
|
|||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|x64.Build.0 = Release|x64
|
||||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|x64.ActiveCfg = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.Build.0 = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.Build.0 = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.Build.0 = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.ActiveCfg = Release|x64
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -280,14 +238,6 @@ Global
|
|||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|x64.Build.0 = Release|x64
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|x64.ActiveCfg = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.Build.0 = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.Build.0 = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.Build.0 = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.ActiveCfg = Release|x64
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -368,14 +318,6 @@ Global
|
|||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658}.Release|x64.Build.0 = Release|x64
|
||||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658}.Release|x64.ActiveCfg = Release|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|x64.Build.0 = Debug|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|Win32.Build.0 = Release|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|x64.Build.0 = Release|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|x64.ActiveCfg = Release|x64
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -409,16 +351,13 @@ Global
|
|||
{863337BC-C6F9-E4E8-C27D-2D6BAFF72E18} = {E5C5BB03-8E38-94D5-C4F7-7A59153EF8F2}
|
||||
{687DE0BC-8B42-53E9-FB1A-C750ED5CD57C} = {E5C5BB03-8E38-94D5-C4F7-7A59153EF8F2}
|
||||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0} = {E5C5BB03-8E38-94D5-C4F7-7A59153EF8F2}
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858} = {E5C5BB03-8E38-94D5-C4F7-7A59153EF8F2}
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{2CD8FF4D-DAF2-3CA0-CBBB-8A3F7C33CA32} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{70EF5244-5141-EC9E-11A6-7B6DD126FFFA} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
|
|
@ -429,7 +368,6 @@ Global
|
|||
{C04D78E5-3A59-67AE-8832-C03CE8DFF0B7} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{6446D860-DBBF-E540-E9E2-CBAB5F98F1E3} = {AEB42855-4A0A-CC6C-C503-A2E4DA6AE61A}
|
||||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658} = {FF7C0FCD-6A31-E735-A61C-001F75426961}
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3} = {FF7C0FCD-6A31-E735-A61C-001F75426961}
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992} = {FF7C0FCD-6A31-E735-A61C-001F75426961}
|
||||
{4279720C-503C-C9A3-8714-4E88F1D2B1E0} = {FF7C0FCD-6A31-E735-A61C-001F75426961}
|
||||
{DB51380C-CDCA-2EE5-24C3-7307B6C32AE1} = {FF7C0FCD-6A31-E735-A61C-001F75426961}
|
||||
|
|
|
|||
|
|
@ -8,10 +8,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "dreamtorus", "dreamtorus.vc
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "alphatorus", "alphatorus.vcxproj", "{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "tiger", "tiger.vcxproj", "{CC6D2AA2-765F-3405-4DF6-DC537EE16992}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -49,14 +45,6 @@ Global
|
|||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658}.Release|x64.Build.0 = Release|x64
|
||||
{55D3AA5A-E8FE-2AC9-A665-77FC920A8658}.Release|x64.ActiveCfg = Release|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|x64.Build.0 = Debug|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|Win32.Build.0 = Release|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|x64.Build.0 = Release|x64
|
||||
{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}.Release|x64.ActiveCfg = Release|x64
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{CC6D2AA2-765F-3405-4DF6-DC537EE16992}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalglewlib", "Regalglewli
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "civetweblib", "civetweblib.vcxproj", "{DF066256-E0AD-E016-6F07-52E868F96C02}"
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "mongooselib", "mongooselib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -51,10 +51,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "png", "png.vcxproj", "{6446
|
|||
{C04D78E5-3A59-67AE-8832-C03CE8DFF0B7} = {C04D78E5-3A59-67AE-8832-C03CE8DFF0B7}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pcrelib", "pcrelib.vcxproj", "{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "jsonsllib", "jsonsllib.vcxproj", "{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -67,10 +63,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "apitracelib", "apitracelib.
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "glsloptlib", "glsloptlib.vcxproj", "{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "snappylib", "snappylib.vcxproj", "{E3BB0211-87AF-58EF-3C65-999758F666FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -131,14 +123,14 @@ Global
|
|||
{EB036E23-0C3C-CD7C-5456-A9C5E6209A4C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{EB036E23-0C3C-CD7C-5456-A9C5E6209A4C}.Release|x64.Build.0 = Release|x64
|
||||
{EB036E23-0C3C-CD7C-5456-A9C5E6209A4C}.Release|x64.ActiveCfg = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.Build.0 = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.Build.0 = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.Build.0 = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.ActiveCfg = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.Build.0 = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.Build.0 = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.Build.0 = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.ActiveCfg = Release|x64
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -179,14 +171,6 @@ Global
|
|||
{6446D860-DBBF-E540-E9E2-CBAB5F98F1E3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6446D860-DBBF-E540-E9E2-CBAB5F98F1E3}.Release|x64.Build.0 = Release|x64
|
||||
{6446D860-DBBF-E540-E9E2-CBAB5F98F1E3}.Release|x64.ActiveCfg = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.Build.0 = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.Build.0 = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.Build.0 = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.ActiveCfg = Release|x64
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -211,14 +195,6 @@ Global
|
|||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|x64.Build.0 = Release|x64
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|x64.ActiveCfg = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.Build.0 = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.Build.0 = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.Build.0 = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.ActiveCfg = Release|x64
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
|
|||
|
|
@ -2,15 +2,13 @@ Microsoft Visual Studio Solution File, Format Version 11.00
|
|||
# Visual Studio 2010
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regal", "Regal.vcxproj", "{6B2786AC-DF6B-8B13-DE42-875D8D9194D9}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {DF066256-E0AD-E016-6F07-52E868F96C02}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {256E64B8-F766-061C-45F8-25B51B7CA24E}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {EF516F6A-1965-7089-C2CA-65778D394F08}
|
||||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {9C419167-D705-A241-8927-763A6F9A5016}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64} = {27193EF0-3CCB-8553-C48A-271082615A64}
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21} = {A996811D-4FA1-5874-A99B-81B8A0F3AA21}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {E3BB0211-87AF-58EF-3C65-999758F666FD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -20,15 +18,13 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regallib", "Regallib.vcxpro
|
|||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalm", "Regalm.vcxproj", "{687DE0BC-8B42-53E9-FB1A-C750ED5CD57C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {DF066256-E0AD-E016-6F07-52E868F96C02}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {256E64B8-F766-061C-45F8-25B51B7CA24E}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {EF516F6A-1965-7089-C2CA-65778D394F08}
|
||||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {9C419167-D705-A241-8927-763A6F9A5016}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64} = {27193EF0-3CCB-8553-C48A-271082615A64}
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21} = {A996811D-4FA1-5874-A99B-81B8A0F3AA21}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {E3BB0211-87AF-58EF-3C65-999758F666FD}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -36,12 +32,7 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalmlib", "Regalmlib.vcxp
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regalw", "Regalw.vcxproj", "{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "civetweblib", "civetweblib.vcxproj", "{DF066256-E0AD-E016-6F07-52E868F96C02}"
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "mongooselib", "mongooselib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -58,10 +49,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pnglib", "pnglib.vcxproj",
|
|||
{12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99} = {12EBE7B9-A6BF-51C2-BC7A-A743E21C7B99}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pcrelib", "pcrelib.vcxproj", "{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "jsonsllib", "jsonsllib.vcxproj", "{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -74,10 +61,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "apitracelib", "apitracelib.
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "glsloptlib", "glsloptlib.vcxproj", "{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "snappylib", "snappylib.vcxproj", "{E3BB0211-87AF-58EF-3C65-999758F666FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -122,22 +105,14 @@ Global
|
|||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0}.Release|x64.Build.0 = Release|x64
|
||||
{5C0D9EFE-80E2-1DA1-7A53-D640CAE643C0}.Release|x64.ActiveCfg = Release|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|x64.Build.0 = Debug|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|Win32.Build.0 = Release|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|x64.Build.0 = Release|x64
|
||||
{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}.Release|x64.ActiveCfg = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.Build.0 = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.Build.0 = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.Build.0 = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.ActiveCfg = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.Build.0 = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.Build.0 = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.Build.0 = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.ActiveCfg = Release|x64
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -162,14 +137,6 @@ Global
|
|||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|x64.Build.0 = Release|x64
|
||||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|x64.ActiveCfg = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.Build.0 = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.Build.0 = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.Build.0 = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.ActiveCfg = Release|x64
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -194,14 +161,6 @@ Global
|
|||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|x64.Build.0 = Release|x64
|
||||
{A996811D-4FA1-5874-A99B-81B8A0F3AA21}.Release|x64.ActiveCfg = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.Build.0 = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.Build.0 = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.Build.0 = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.ActiveCfg = Release|x64
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
|
|||
|
|
@ -78,8 +78,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;pcrelib.lib;glsloptlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
|
|
@ -118,8 +118,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -133,11 +133,11 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;pcrelib.lib;glsloptlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;pcrelib.lib;glsloptlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
|
|
@ -197,8 +197,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -211,11 +211,11 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;pcrelib.lib;glsloptlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
|
|
@ -249,7 +249,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalContextInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalContextInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDebugInfo.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatch.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatch.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCache.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCode.cpp" />
|
||||
|
|
@ -257,10 +256,7 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchEmu.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchError.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchError.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGLX.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGlobal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchHttp.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchHttp.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLoader.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLog.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchMissing.cpp" />
|
||||
|
|
@ -277,10 +273,7 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcherGlobal.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDllMain.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDsa.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmu.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmu.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmuInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmuInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEnum.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFavicon.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFavicon.h" />
|
||||
|
|
@ -314,16 +307,13 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalPixelConversions.inl" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPlugin.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpa.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpc.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPpca.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpca.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrecompile.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrivate.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPush.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalQuads.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalQuads.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalScopedPtr.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShader.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalShader.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShaderInstance.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedList.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedMap.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedPtr.h" />
|
||||
|
|
@ -343,7 +333,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalUtil.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalUtil.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalVao.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalX11.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalXfer.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalXfer.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\linear.h" />
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regallib", "Regallib.vcxpro
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "civetweblib", "civetweblib.vcxproj", "{DF066256-E0AD-E016-6F07-52E868F96C02}"
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "mongooselib", "mongooselib.vcxproj", "{256E64B8-F766-061C-45F8-25B51B7CA24E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
@ -16,10 +16,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pnglib", "pnglib.vcxproj",
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "pcrelib", "pcrelib.vcxproj", "{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "jsonsllib", "jsonsllib.vcxproj", "{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -28,10 +24,6 @@ Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "squishlib", "squishlib.vcxp
|
|||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "glsloptlib", "glsloptlib.vcxproj", "{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "snappylib", "snappylib.vcxproj", "{E3BB0211-87AF-58EF-3C65-999758F666FD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
|
|
@ -43,13 +35,11 @@ EndProject
|
|||
Project("{CF05FE22-B763-D96E-C64D-312608111C07}") = "Regaltest", "Regaltest.vcxproj", "{F6188D79-AC4B-7445-0772-B4CEF40D72E1}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{863337BC-C6F9-E4E8-C27D-2D6BAFF72E18} = {863337BC-C6F9-E4E8-C27D-2D6BAFF72E18}
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02} = {DF066256-E0AD-E016-6F07-52E868F96C02}
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E} = {256E64B8-F766-061C-45F8-25B51B7CA24E}
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08} = {EF516F6A-1965-7089-C2CA-65778D394F08}
|
||||
{9C419167-D705-A241-8927-763A6F9A5016} = {9C419167-D705-A241-8927-763A6F9A5016}
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD} = {F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C} = {B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64} = {27193EF0-3CCB-8553-C48A-271082615A64}
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B} = {1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD} = {E3BB0211-87AF-58EF-3C65-999758F666FD}
|
||||
{8772AF49-E799-D743-4AED-682CB7047DB9} = {8772AF49-E799-D743-4AED-682CB7047DB9}
|
||||
EndProjectSection
|
||||
|
|
@ -70,14 +60,14 @@ Global
|
|||
{863337BC-C6F9-E4E8-C27D-2D6BAFF72E18}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{863337BC-C6F9-E4E8-C27D-2D6BAFF72E18}.Release|x64.Build.0 = Release|x64
|
||||
{863337BC-C6F9-E4E8-C27D-2D6BAFF72E18}.Release|x64.ActiveCfg = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.Build.0 = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.Build.0 = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.Build.0 = Release|x64
|
||||
{DF066256-E0AD-E016-6F07-52E868F96C02}.Release|x64.ActiveCfg = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.Build.0 = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.Build.0 = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.Build.0 = Release|x64
|
||||
{256E64B8-F766-061C-45F8-25B51B7CA24E}.Release|x64.ActiveCfg = Release|x64
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EF516F6A-1965-7089-C2CA-65778D394F08}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -94,14 +84,6 @@ Global
|
|||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|x64.Build.0 = Release|x64
|
||||
{9C419167-D705-A241-8927-763A6F9A5016}.Release|x64.ActiveCfg = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.Build.0 = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.Build.0 = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.Build.0 = Release|x64
|
||||
{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}.Release|x64.ActiveCfg = Release|x64
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B2F73D1B-8FA3-518D-0F85-9AAD20EF1E1C}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
@ -118,14 +100,6 @@ Global
|
|||
{27193EF0-3CCB-8553-C48A-271082615A64}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64}.Release|x64.Build.0 = Release|x64
|
||||
{27193EF0-3CCB-8553-C48A-271082615A64}.Release|x64.ActiveCfg = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.Build.0 = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.Build.0 = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.Build.0 = Release|x64
|
||||
{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}.Release|x64.ActiveCfg = Release|x64
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E3BB0211-87AF-58EF-3C65-999758F666FD}.Debug|x64.Build.0 = Debug|x64
|
||||
|
|
|
|||
|
|
@ -78,8 +78,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -118,8 +118,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -197,8 +197,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -211,7 +211,7 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
|
|
@ -249,7 +249,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalContextInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalContextInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDebugInfo.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatch.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatch.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCache.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCode.cpp" />
|
||||
|
|
@ -257,10 +256,7 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchEmu.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchError.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchError.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGLX.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGlobal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchHttp.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchHttp.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLoader.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLog.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchMissing.cpp" />
|
||||
|
|
@ -277,10 +273,7 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcherGlobal.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDllMain.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDsa.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmu.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmu.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmuInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmuInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEnum.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFavicon.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFavicon.h" />
|
||||
|
|
@ -314,16 +307,13 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalPixelConversions.inl" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPlugin.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpa.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpc.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPpca.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpca.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrecompile.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrivate.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPush.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalQuads.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalQuads.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalScopedPtr.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShader.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalShader.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShaderInstance.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedList.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedMap.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedPtr.h" />
|
||||
|
|
@ -343,7 +333,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalUtil.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalUtil.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalVao.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalX11.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalXfer.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalXfer.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\linear.h" />
|
||||
|
|
|
|||
|
|
@ -78,8 +78,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regalm.def</ModuleDefinitionFile>
|
||||
|
|
@ -118,8 +118,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -133,11 +133,11 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regalm.def</ModuleDefinitionFile>
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regalm.def</ModuleDefinitionFile>
|
||||
|
|
@ -197,8 +197,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -211,11 +211,11 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regalm.def</ModuleDefinitionFile>
|
||||
|
|
@ -249,7 +249,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalContextInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalContextInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDebugInfo.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatch.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatch.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCache.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCode.cpp" />
|
||||
|
|
@ -257,10 +256,7 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchEmu.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchError.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchError.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGLX.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGlobal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchHttp.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchHttp.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLoader.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLog.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchMissing.cpp" />
|
||||
|
|
@ -277,10 +273,7 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcherGlobal.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDllMain.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDsa.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmu.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmu.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmuInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmuInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEnum.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFavicon.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFavicon.h" />
|
||||
|
|
@ -314,16 +307,13 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalPixelConversions.inl" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPlugin.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpa.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpc.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPpca.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpca.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrecompile.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrivate.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPush.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalQuads.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalQuads.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalScopedPtr.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShader.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalShader.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShaderInstance.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedList.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedMap.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedPtr.h" />
|
||||
|
|
@ -343,7 +333,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalUtil.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalUtil.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalVao.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalX11.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalXfer.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalXfer.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\linear.h" />
|
||||
|
|
|
|||
|
|
@ -78,8 +78,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -118,8 +118,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -197,8 +197,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>PCRE_STATIC=1;REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/jsonsl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_DECL_EXPORT;REGAL_NAMESPACE;REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -211,7 +211,7 @@
|
|||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
|
|
@ -249,7 +249,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalContextInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalContextInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDebugInfo.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatch.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatch.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCache.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCode.cpp" />
|
||||
|
|
@ -257,10 +256,7 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchEmu.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchError.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchError.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGLX.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGlobal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchHttp.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchHttp.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLoader.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLog.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchMissing.cpp" />
|
||||
|
|
@ -277,10 +273,7 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcherGlobal.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDllMain.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDsa.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmu.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmu.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmuInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmuInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEnum.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFavicon.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFavicon.h" />
|
||||
|
|
@ -314,16 +307,13 @@
|
|||
<ClInclude Include="..\..\..\..\src\regal\RegalPixelConversions.inl" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPlugin.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpa.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpc.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPpca.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpca.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrecompile.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrivate.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPush.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalQuads.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalQuads.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalScopedPtr.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShader.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalShader.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShaderInstance.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedList.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedMap.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedPtr.h" />
|
||||
|
|
@ -343,7 +333,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\regal\RegalUtil.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalUtil.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalVao.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalX11.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalXfer.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalXfer.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\linear.h" />
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\Win32\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Release\x64\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\Win32\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/mongoose;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_WIN_TLS=1;REGAL_POINTER=1;REGAL_DECL_EXPORT;REGAL_SYS_WGL_DECLARE_WGL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
|
@ -206,7 +206,7 @@
|
|||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>mongooselib.lib;md5lib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>Debug\x64\regalp.dll</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
|
|
@ -298,4 +298,4 @@
|
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
|
@ -78,8 +78,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../src/lookup3;../../../../src/pcre;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;PCRE_STATIC=1;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
@ -118,8 +118,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../src/lookup3;../../../../src/pcre;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;PCRE_STATIC=1;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../src/lookup3;../../../../src/pcre;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;PCRE_STATIC=1;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
@ -197,8 +197,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../src/lookup3;../../../../src/pcre;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;PCRE_STATIC=1;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../src/googletest/include;../../../../src/googlemock/include;../../../../src/googlemock;../../../../src/boost;../../../../src/regal;../../../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GTEST_HAS_RTTI=0;REGAL_SYS_WGL_DECLARE_WGL;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;pcrelib.lib;glsloptlib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>gtestlib.lib;regallib.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;squishlib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;advapi32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
|
|||
|
|
@ -1,363 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>Regalw</ProjectName>
|
||||
<ProjectGuid>{324CD1C8-680A-9A1D-EFE7-A93D7EFFE858}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\Regalw\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\Regalw\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\Regalw\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\Regalw\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">regalw</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">regalw</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">regalw</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">regalw</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;REGAL_WRANGLER=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\Regalw\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\Regalw\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\regalw.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>jsonsllib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\regalw.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\regalw.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;REGAL_WRANGLER=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\Regalw\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\Regalw\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\regalw.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>jsonsllib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\regalw.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Release\x64\regalw.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;REGAL_WRANGLER=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\Regalw\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\Regalw\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\regalw.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>jsonsllib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\regalw.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\regalw.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/boost;../../../../include;../../../../src/civetweb;../../../../src/lookup3;../../../../src/md5/include;../../../../src/libpng/include;../../../../src/zlib/include;../../../../src/squish;../../../../src/pcre;../../../../src/jsonsl;../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>REGAL_NO_SQUISH=1;REGAL_SYS_WGL_DECLARE_WGL;REGAL_WIN_TLS=1;REGAL_WRANGLER=1;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\Regalw\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\Regalw\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\regalw.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>jsonsllib.lib;advapi32.lib;gdi32.lib;user32.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile>../../../../src/regal/Regal.def</ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\regalw.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Debug\x64\regalw.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\regal\Regal.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalBin.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalBreak.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalBreak.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalCacheShader.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalCacheShader.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalCacheTexture.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalCacheTexture.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalConfig.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalConfig.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalContext.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalContext.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalContextInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalContextInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDebugInfo.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatch.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatch.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCache.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchCode.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchDebug.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchEmu.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchError.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchError.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGLX.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchGlobal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchHttp.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatchHttp.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLoader.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchLog.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchMissing.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchPpapi.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchStaticEGL.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchStaticES2.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchStatistics.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatchTrace.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatcher.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcher.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatcherGL.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcherGL.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDispatcherGlobal.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDispatcherGlobal.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalDllMain.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalDsa.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmu.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmu.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalEmuInfo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEmuInfo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalEnum.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFavicon.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFavicon.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFilt.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFilt.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalFrame.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalFrame.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalHelper.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalHelper.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalHttp.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalHttp.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalIff.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalIff.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalInit.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalInit.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalJson.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalJson.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalJson.inl" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalLog.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalLog.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalLookup.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalLookup.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalMac.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalMac.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalMarker.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalMarker.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalNamespace.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalObj.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPixelConversions.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPixelConversions.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPixelConversions.inl" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalPlugin.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpa.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPpca.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrecompile.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPrivate.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalPush.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalQuads.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalQuads.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalScopedPtr.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShader.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalShader.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalShaderInstance.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedList.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedMap.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSharedPtr.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalSo.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSo.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalState.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalStatistics.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalStatistics.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalSystem.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalTexC.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalTexC.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalTexSto.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalThread.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalTimer.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalToken.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalToken.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalUtil.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalUtil.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalVao.h" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalX11.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\regal\RegalXfer.cpp" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\RegalXfer.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\linear.h" />
|
||||
<ClInclude Include="..\..\..\..\src\regal\pch.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\..\..\..\include\GL\Regal.h" />
|
||||
<None Include="..\..\..\..\src\lookup3\lookup3.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\..\..\..\src\regal\Regal.def" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -1,244 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>alphatorus</ProjectName>
|
||||
<ProjectGuid>{B16811C6-F61E-8CD5-E8A4-94D84F05D7A3}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\alphatorus\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\alphatorus\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\alphatorus\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\alphatorus\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">alphatorus</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">alphatorus</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">alphatorus</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">alphatorus</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/glu/include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GLUT_NO_LIB_PRAGMA;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\alphatorus\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\alphatorus\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\alphatorus.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglut32.lib;rglu32.lib;regal32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\alphatorus.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\alphatorus.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/glu/include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GLUT_NO_LIB_PRAGMA;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\alphatorus\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\alphatorus\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\alphatorus.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglut32.lib;rglu32.lib;regal32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\alphatorus.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Release\x64\alphatorus.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/glu/include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GLUT_NO_LIB_PRAGMA;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\alphatorus\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\alphatorus\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\alphatorus.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglut32.lib;rglu32.lib;regal32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\alphatorus.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\alphatorus.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/glu/include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>GLUT_NO_LIB_PRAGMA;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\alphatorus\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\alphatorus\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\alphatorus.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglut32.lib;rglu32.lib;regal32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\alphatorus.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Debug\x64\alphatorus.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\examples\alphatorus\glut\code\main.cpp" />
|
||||
<ClCompile Include="..\..\..\..\examples\alphatorus\src\render.cpp" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -1,244 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>alphatorus_win32</ProjectName>
|
||||
<ProjectGuid>{9722CBCF-433D-69FD-9DF1-5D4BEA237F5E}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\alphatorus_win32\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\alphatorus_win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\alphatorus_win32\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\alphatorus_win32\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">alphatorus_win32</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">alphatorus_win32</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">alphatorus_win32</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">alphatorus_win32</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\alphatorus_win32\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\alphatorus_win32\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\alphatorus_win32.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>regal32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\alphatorus_win32.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\alphatorus_win32.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\alphatorus_win32\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\alphatorus_win32\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\alphatorus_win32.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>regal32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\alphatorus_win32.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<ImportLibrary>Release\x64\alphatorus_win32.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\alphatorus_win32\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\alphatorus_win32\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\alphatorus_win32.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>regal32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\alphatorus_win32.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\alphatorus_win32.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../examples/alphatorus/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\alphatorus_win32\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\alphatorus_win32\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\alphatorus_win32.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>regal32.lib;gdi32.lib;user32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\alphatorus_win32.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<ImportLibrary>Debug\x64\alphatorus_win32.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\examples\alphatorus\src\render.cpp" />
|
||||
<ClCompile Include="..\..\..\..\examples\alphatorus\win32\minimal.cpp" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -78,8 +78,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;HAVE_BACKTRACE=0;HAVE_EXTERNAL_OS_LOG=1;NOMINMAX;TRACE_ENABLED_CHECK=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;../../../../src/apitrace/thirdparty/msinttypes;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;NOMINMAX;TRACE_BACKTRACE=0;TRACE_ENABLED_CHECK=0;TRACE_OS_LOG=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -118,8 +118,8 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;HAVE_BACKTRACE=0;HAVE_EXTERNAL_OS_LOG=1;NOMINMAX;TRACE_ENABLED_CHECK=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;../../../../src/apitrace/thirdparty/msinttypes;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;NOMINMAX;TRACE_BACKTRACE=0;TRACE_ENABLED_CHECK=0;TRACE_OS_LOG=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;HAVE_BACKTRACE=0;HAVE_EXTERNAL_OS_LOG=1;NOMINMAX;TRACE_ENABLED_CHECK=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;../../../../src/apitrace/thirdparty/msinttypes;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;NOMINMAX;TRACE_BACKTRACE=0;TRACE_ENABLED_CHECK=0;TRACE_OS_LOG=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -197,8 +197,8 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;HAVE_BACKTRACE=0;HAVE_EXTERNAL_OS_LOG=1;NOMINMAX;TRACE_ENABLED_CHECK=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>../../../../include;../../../../src/apitrace/common;../../../../src/apitrace/dispatch;../../../../src/apitrace/helpers;../../../../src/apitrace/wrappers;../../../../src/apitrace;../../../../src/snappy;../../../../src/zlib/include;../../../../src/zlib/src;../../../../src/apitrace/thirdparty/khronos;../../../../src/regal;../../../../src/apitrace/thirdparty/msinttypes;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>APITRACE_TLS=0;NOMINMAX;TRACE_BACKTRACE=0;TRACE_ENABLED_CHECK=0;TRACE_OS_LOG=0;_ITERATOR_DEBUG_LEVEL=0;_WIN32_WINNT=0x0501;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
|
|
@ -234,10 +234,9 @@
|
|||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\highlight.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\os_backtrace.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\os_posix.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\os_win32.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\trace_backtrace.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\trace_callset.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\trace_dump.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\common\trace_fast_callset.cpp" />
|
||||
|
|
@ -257,10 +256,10 @@
|
|||
<ClCompile Include="..\..\..\..\src\apitrace\common\trace_writer_regal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\dispatch\glproc_regal.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\helpers\eglsize.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\wrappers\dlsym.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\wrappers\glcaps.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\wrappers\gltrace_state.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\wrappers\regaltrace.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\apitrace\wrappers\trace.cpp" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
|
|
|||
|
|
@ -1,243 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>civetweb</ProjectName>
|
||||
<ProjectGuid>{B15707F8-F826-E261-AC07-A13E4E801650}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\civetweb\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\civetweb\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\civetweb\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\civetweb\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">civetweb</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">civetweb</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">civetweb</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">civetweb</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\civetweb\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\civetweb\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\civetweb.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\civetweb.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\civetweb.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\civetweb\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\civetweb\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\civetweb.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\civetweb.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Release\x64\civetweb.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\civetweb\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\civetweb\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\civetweb.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\civetweb.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\civetweb.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\civetweb\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\civetweb\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\civetweb.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>civetweblib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\civetweb.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Debug\x64\civetweb.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\civetweb\main.c" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;glsloptlib.lib;pcrelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;glsloptlib.lib;pcrelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;glsloptlib.lib;pcrelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;civetweblib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;glsloptlib.lib;pcrelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalDependencies>rglutlib.lib;rglulib.lib;regallib.lib;winmm.lib;ws2_32.lib;mongooselib.lib;md5lib.lib;jsonsllib.lib;apitracelib.lib;snappylib.lib;pnglib.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
|
|
|
|||
|
|
@ -275,15 +275,6 @@
|
|||
<ClCompile Include="..\..\..\..\src\freetype\src\bdf\bdfdrivr.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\bdf\bdflib.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cache\ftcache.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2arrst.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2blues.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2error.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2font.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2ft.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2hints.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2intrp.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2read.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cf2stack.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cffcmap.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cffdrivr.c" />
|
||||
<ClCompile Include="..\..\..\..\src\freetype\src\cff\cffgload.c" />
|
||||
|
|
|
|||
|
|
@ -1,327 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>glsloptlib</ProjectName>
|
||||
<ProjectGuid>{1BC6E4FA-5DF0-05C0-9F6A-582B10E2F55B}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\glsloptlib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\glsloptlib\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\glsloptlib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\glsloptlib\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">glsloptlib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">glsloptlib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">glsloptlib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">glsloptlib</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\glsloptlib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\glsloptlib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\glsloptlib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\glsloptlib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\glsloptlib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\glsloptlib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\glsloptlib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\glsloptlib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\glsloptlib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Release\x64\glsloptlib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\glsloptlib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\glsloptlib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\glsloptlib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\glsloptlib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\glsloptlib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/glsl/include;../../../../src/glsl/src/glsl;../../../../src/glsl/src/mesa;../../../../src/glsl/include/c99;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\glsloptlib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\glsloptlib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\glsloptlib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\glsloptlib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Debug\x64\glsloptlib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\..\mesa\main\hash_table.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\..\mesa\main\imports.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\..\mesa\program\prog_hash_table.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\..\mesa\program\symbol_table.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ast_array_index.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ast_expr.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ast_function.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ast_to_hir.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ast_type.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\builtin_function.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\builtin_variables.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glcpp\glcpp-lex.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glcpp\glcpp-parse.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glcpp\pp.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glsl_lexer.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glsl_optimizer.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glsl_parser.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glsl_parser_extras.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glsl_symbol_table.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\glsl_types.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\hir_field_selection.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_basic_block.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_builder.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_clone.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_constant_expression.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_expression_flattening.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_function.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_function_can_inline.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_function_detect_recursion.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_hierarchical_visitor.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_hv_accept.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_import_prototypes.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_print_glsl_visitor.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_print_visitor.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_reader.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_rvalue_visitor.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_unused_structs.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_validate.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ir_variable_refcount.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\link_functions.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\link_uniform_block_active_visitor.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\link_uniform_blocks.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\link_uniform_initializers.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\link_uniforms.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\link_varyings.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\linker.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\loop_analysis.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\loop_controls.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\loop_unroll.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_clip_distance.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_discard.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_discard_flow.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_if_to_cond_assign.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_instructions.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_jumps.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_mat_op_to_vec.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_noise.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_packed_varyings.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_variable_index_to_cond_assign.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_vec_index_to_cond_assign.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_vec_index_to_swizzle.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\lower_vector.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_algebraic.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_array_splitting.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_constant_folding.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_constant_propagation.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_constant_variable.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_copy_propagation.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_copy_propagation_elements.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_dead_code.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_dead_code_local.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_dead_functions.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_flatten_nested_if_blocks.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_function_inlining.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_if_simplification.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_noop_swizzle.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_redundant_jumps.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_structure_splitting.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_swizzle_swizzle.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\opt_tree_grafting.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\ralloc.c" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\s_expression.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\standalone_scaffolding.cpp" />
|
||||
<ClCompile Include="..\..\..\..\src\glsl\src\glsl\strtod.c" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -19,8 +19,8 @@
|
|||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>civetweblib</ProjectName>
|
||||
<ProjectGuid>{DF066256-E0AD-E016-6F07-52E868F96C02}</ProjectGuid>
|
||||
<ProjectName>mongooselib</ProjectName>
|
||||
<ProjectGuid>{256E64B8-F766-061C-45F8-25B51B7CA24E}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
|
|
@ -63,31 +63,31 @@
|
|||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\mongooselib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\mongooselib\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\civetweblib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\civetweblib\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">civetweblib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">civetweblib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">civetweblib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">civetweblib</TargetName>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\mongooselib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\mongooselib\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">mongooselib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">mongooselib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">mongooselib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">mongooselib</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEBUG_TRACE=0;NO_SSL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\civetweblib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\civetweblib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\civetweblib.pdb</ProgramDataBaseFileName>
|
||||
<AssemblerListingLocation>Release\Win32\mongooselib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\mongooselib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\mongooselib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
|
|
@ -100,10 +100,10 @@
|
|||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\civetweblib.pdb</ProgramDatabaseFile>
|
||||
<ProgramDatabaseFile>Release\Win32\mongooselib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\civetweblib.lib</ImportLibrary>
|
||||
<ImportLibrary>Release\Win32\mongooselib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
|
|
@ -118,16 +118,16 @@
|
|||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEBUG_TRACE=0;NO_SSL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\civetweblib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\civetweblib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\civetweblib.pdb</ProgramDataBaseFileName>
|
||||
<AssemblerListingLocation>Release\x64\mongooselib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\mongooselib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\mongooselib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
|
|
@ -141,9 +141,9 @@
|
|||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\civetweblib.pdb</ProgramDatabaseFile>
|
||||
<ProgramDatabaseFile>Release\x64\mongooselib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Release\x64\civetweblib.lib</ImportLibrary>
|
||||
<ImportLibrary>Release\x64\mongooselib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
|
|
@ -157,15 +157,15 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEBUG_TRACE=0;NO_SSL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\civetweblib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\civetweblib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\civetweblib.pdb</ProgramDataBaseFileName>
|
||||
<AssemblerListingLocation>Debug\Win32\mongooselib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\mongooselib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\mongooselib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
|
|
@ -180,10 +180,10 @@
|
|||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\civetweblib.pdb</ProgramDatabaseFile>
|
||||
<ProgramDatabaseFile>Debug\Win32\mongooselib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\civetweblib.lib</ImportLibrary>
|
||||
<ImportLibrary>Debug\Win32\mongooselib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
|
|
@ -197,15 +197,15 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/civetweb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>../../../../src/mongoose;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>DEBUG_TRACE=0;NO_SSL;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\civetweblib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\civetweblib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\civetweblib.pdb</ProgramDataBaseFileName>
|
||||
<AssemblerListingLocation>Debug\x64\mongooselib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\mongooselib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\mongooselib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
|
|
@ -220,9 +220,9 @@
|
|||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\civetweblib.pdb</ProgramDatabaseFile>
|
||||
<ProgramDatabaseFile>Debug\x64\mongooselib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Debug\x64\civetweblib.lib</ImportLibrary>
|
||||
<ImportLibrary>Debug\x64\mongooselib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
|
|
@ -234,7 +234,7 @@
|
|||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\civetweb\civetweb.c" />
|
||||
<ClCompile Include="..\..\..\..\src\mongoose\mongoose.c" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
|
@ -1,268 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>pcrelib</ProjectName>
|
||||
<ProjectGuid>{F429E8BA-6BB6-211C-2C88-BD0EA55CF9FD}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Win32\pcrelib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\x64\pcrelib\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Win32\pcrelib\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\x64\pcrelib\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">pcrelib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">pcrelib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">pcrelib</TargetName>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">pcrelib</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/pcre;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>HAVE_CONFIG_H=1;HAVE_DIRENT_H=0;HAVE_INTTYPES_H=0;HAVE_STDINT_H=0;HAVE_UNISTD_H=0;HAVE_WINDOWS_H=1;PCRE_STATIC=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\Win32\pcrelib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\Win32\pcrelib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\Win32\pcrelib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\Win32\pcrelib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Release\Win32\pcrelib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
||||
<AdditionalIncludeDirectories>../../../../src/pcre;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>HAVE_CONFIG_H=1;HAVE_DIRENT_H=0;HAVE_INTTYPES_H=0;HAVE_STDINT_H=0;HAVE_UNISTD_H=0;HAVE_WINDOWS_H=1;PCRE_STATIC=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Release\x64\pcrelib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Release\x64\pcrelib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Release\x64\pcrelib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Release\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<ProgramDatabaseFile>Release\x64\pcrelib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Release\x64\pcrelib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/pcre;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>HAVE_CONFIG_H=1;HAVE_DIRENT_H=0;HAVE_INTTYPES_H=0;HAVE_STDINT_H=0;HAVE_UNISTD_H=0;HAVE_WINDOWS_H=1;PCRE_STATIC=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\Win32\pcrelib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\Win32\pcrelib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\Win32\pcrelib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\Win32\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\Win32\pcrelib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<ImportLibrary>Debug\Win32\pcrelib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>../../../../src/pcre;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>HAVE_CONFIG_H=1;HAVE_DIRENT_H=0;HAVE_INTTYPES_H=0;HAVE_STDINT_H=0;HAVE_UNISTD_H=0;HAVE_WINDOWS_H=1;PCRE_STATIC=1;_ITERATOR_DEBUG_LEVEL=0;_CRT_SECURE_NO_WARNINGS=1;WIN32;_WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<AssemblerListingLocation>Debug\x64\pcrelib\</AssemblerListingLocation>
|
||||
<ObjectFileName>Debug\x64\pcrelib\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>Debug\x64\pcrelib.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<CompileAs>Default</CompileAs>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<AdditionalOptions> %(AdditionalOptions)</AdditionalOptions>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>Debug\x64\;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ModuleDefinitionFile></ModuleDefinitionFile>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>Debug\x64\pcrelib.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<ImportLibrary>Debug\x64\pcrelib.lib</ImportLibrary>
|
||||
</Link>
|
||||
<Midl>
|
||||
<HeaderFileName>
|
||||
</HeaderFileName>
|
||||
</Midl>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_byte_order.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_chartables.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_compile.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_config.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_dfa_exec.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_exec.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_fullinfo.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_get.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_globals.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_jit_compile.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_jit_test.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_maketables.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_newline.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_ord2utf8.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_printint.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_refcount.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_string_utils.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_study.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_tables.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_ucd.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_valid_utf8.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_version.c" />
|
||||
<ClCompile Include="..\..\..\..\src\pcre\pcre_xclass.c" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\..\..\..\src\pcre\pcre.h" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
# Sources
|
||||
|
||||
ZLIB.C :=
|
||||
ZLIB.C += src/zlib/src/adler32.c
|
||||
ZLIB.C += src/zlib/src/crc32.c
|
||||
ZLIB.C += src/zlib/src/compress.c
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ CC = cc
|
|||
LD = cc
|
||||
RANLIB :=
|
||||
EXT.DYNAMIC = dylib
|
||||
CFLAGS.EXTRA = -dynamic -no-cpp-precomp -fno-common -fno-exceptions
|
||||
CFLAGS.EXTRA = -dynamic -fno-common
|
||||
CFLAGS.EXTRA += -MMD
|
||||
PICFLAG = -fPIC
|
||||
LDFLAGS.EXTRA =
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ CC = cc
|
|||
LD = cc
|
||||
RANLIB :=
|
||||
EXT.DYNAMIC = dylib
|
||||
CFLAGS.EXTRA = -arch i386 -dynamic -no-cpp-precomp -fno-common -fno-exceptions
|
||||
CFLAGS.EXTRA = -arch i386 -no-cpp-precomp -dynamic -fno-common
|
||||
CFLAGS.EXTRA += -MMD
|
||||
PICFLAG = -fPIC
|
||||
LDFLAGS.EXTRA = -arch i386
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ CC = cc
|
|||
LD = cc
|
||||
RANLIB :=
|
||||
EXT.DYNAMIC = dylib
|
||||
CFLAGS.EXTRA = -arch ppc -dynamic -no-cpp-precomp -fno-common -fno-exceptions
|
||||
CFLAGS.EXTRA = -arch ppc -no-cpp-precomp -dynamic -fno-common
|
||||
CFLAGS.EXTRA += -MMD
|
||||
PICFLAG = -fPIC
|
||||
LDFLAGS.EXTRA = -arch ppc
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ CC = cc
|
|||
LD = cc
|
||||
RANLIB :=
|
||||
EXT.DYNAMIC = dylib
|
||||
CFLAGS.EXTRA = -arch x86_64 -dynamic -no-cpp-precomp -fno-common -fno-exceptions
|
||||
CFLAGS.EXTRA = -arch x86_64 -dynamic -fno-common
|
||||
CFLAGS.EXTRA += -MMD
|
||||
PICFLAG = -fPIC
|
||||
LDFLAGS.EXTRA = -arch x86_64
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
# Use clang 3.5 toolchain on Ubuntu 14.04 / Debian
|
||||
|
||||
include config/Makefile.linux
|
||||
|
||||
CC = clang
|
||||
CXX = clang++
|
||||
LD = clang
|
||||
|
||||
WARN += -Wno-constant-logical-operand
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
# Use gcc 4.4 toolchain on Ubuntu 14.04 / Debian
|
||||
|
||||
include config/Makefile.linux
|
||||
|
||||
CC = gcc-4.4
|
||||
CXX = g++-4.4
|
||||
LD = gcc-4.4
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
# Use gcc 4.6 toolchain on Ubuntu 14.04 / Debian
|
||||
|
||||
include config/Makefile.linux
|
||||
|
||||
CC = gcc-4.6
|
||||
CXX = g++-4.6
|
||||
LD = gcc-4.6
|
||||
|
|
@ -2,7 +2,7 @@ NACL_ARCH := pnacl
|
|||
|
||||
include config/nacl.inc
|
||||
|
||||
NACL_TOOLCHAIN := $(NACL_SDK_ROOT)/toolchain/$(NACL_OS)_pnacl
|
||||
NACL_TOOLCHAIN := $(NACL_SDK_ROOT)/toolchain/$(NACL_OS)_x86_pnacl/$(NACL_LIBC)
|
||||
|
||||
CC := $(NACL_TOOLCHAIN)/bin/pnacl-clang
|
||||
CXX := $(NACL_TOOLCHAIN)/bin/pnacl-clang++
|
||||
|
|
@ -13,6 +13,7 @@ STRIP ?=
|
|||
|
||||
BIN_EXTENSION = .pexe
|
||||
EXT.DYNAMIC = so
|
||||
LDFLAGS.EXTRA =
|
||||
LIBDIR =
|
||||
CFLAGS.EXTRA +=
|
||||
LDFLAGS.EXTRA +=
|
||||
|
|
|
|||
|
|
@ -48,12 +48,8 @@ export CCACHE_COMPILERCHECK=echo $(SYSTEM)$(NACL_LIBC)$(NACL_SDK_ROOT)
|
|||
ifeq ($(NACL_ARCH),i686)
|
||||
NACL_LIBTYPE=$(NACL_LIBC)_x86_32
|
||||
else
|
||||
ifeq ($(NACL_ARCH),pnacl)
|
||||
NACL_LIBTYPE=$(NACL_ARCH)
|
||||
else
|
||||
NACL_LIBTYPE=$(NACL_LIBC)_$(NACL_ARCH)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(MODE),debug)
|
||||
LDFLAGS.EXTRA += -L$(NACL_SDK_ROOT)/ports/lib/$(NACL_LIBTYPE)/Debug
|
||||
|
|
|
|||
14
debian/.gitignore
vendored
14
debian/.gitignore
vendored
|
|
@ -1,14 +0,0 @@
|
|||
/files
|
||||
/libregal-dev.debhelper.log
|
||||
/libregal-dev.postinst.debhelper
|
||||
/libregal-dev.postrm.debhelper
|
||||
/libregal-dev.substvars
|
||||
/libregal-dev/
|
||||
/libregal-progs.debhelper.log
|
||||
/libregal-progs.substvars
|
||||
/libregal-progs/
|
||||
/libregal.debhelper.log
|
||||
/libregal.postinst.debhelper
|
||||
/libregal.postrm.debhelper
|
||||
/libregal.substvars
|
||||
/libregal/
|
||||
5
debian/changelog
vendored
5
debian/changelog
vendored
|
|
@ -1,5 +0,0 @@
|
|||
regal (0.1) stable; urgency=medium
|
||||
|
||||
* Initial release. (Closes: #XXXXXX)
|
||||
|
||||
-- jepler <jepler@babs.unpythonic.net> Fri, 19 Sep 2014 21:23:43 -0500
|
||||
1
debian/compat
vendored
1
debian/compat
vendored
|
|
@ -1 +0,0 @@
|
|||
7
|
||||
39
debian/control
vendored
39
debian/control
vendored
|
|
@ -1,39 +0,0 @@
|
|||
Source: regal
|
||||
Maintainer: Jeff Epler <jepler@unpythonic.net>
|
||||
Section: misc
|
||||
Priority: optional
|
||||
Standards-Version: 3.9.3
|
||||
Build-Depends: libegl1-mesa-dev
|
||||
|
||||
Package: libregal
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Regal is a user-space OpenGL layer
|
||||
.
|
||||
Regal supports OpenGL 2.x, 3.x, 4.x, Core contexts and ES 2.0. Regal
|
||||
implements OpenGL loading, emulation for ES and Core contexts and tools for
|
||||
debugging.
|
||||
.
|
||||
This package contains the runtime libraries
|
||||
|
||||
Package: libregal-dev
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Regal is a user-space OpenGL layer
|
||||
.
|
||||
Regal supports OpenGL 2.x, 3.x, 4.x, Core contexts and ES 2.0. Regal
|
||||
implements OpenGL loading, emulation for ES and Core contexts and tools for
|
||||
debugging.
|
||||
.
|
||||
This package contains the development files.
|
||||
|
||||
Package: libregal-progs
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Regal is a user-space OpenGL layer
|
||||
.
|
||||
Regal supports OpenGL 2.x, 3.x, 4.x, Core contexts and ES 2.0. Regal
|
||||
implements OpenGL loading, emulation for ES and Core contexts and tools for
|
||||
debugging.
|
||||
.
|
||||
This package contains information and demo programs
|
||||
25
debian/rules
vendored
25
debian/rules
vendored
|
|
@ -1,25 +0,0 @@
|
|||
#!/usr/bin/make -f
|
||||
.PHONY: $(wildcard *)
|
||||
%:
|
||||
dh $@ --parallel
|
||||
|
||||
ARCH=$(shell dpkg-qrchitecture -qDEB_BUILD_MULTIARCH)
|
||||
|
||||
override_dh_auto_clean:
|
||||
rm -rf bin lib tmp
|
||||
|
||||
LIBREGAL := $(CURDIR)/debian/libregal/usr
|
||||
LIBREGALDEV := $(CURDIR)/debian/libregal-dev/usr
|
||||
REGALPROGS := $(CURDIR)/debian/libregal-progs/usr
|
||||
override_dh_auto_install:
|
||||
|
||||
mkdir -p ${LIBREGALDEV}/include/GL
|
||||
mkdir -p ${LIBREGALDEV}/lib/${ARCH}
|
||||
cp include/GL/* ${LIBREGALDEV}/include/GL/
|
||||
cp lib/linux/*.so ${LIBREGALDEV}/lib/${ARCH}/
|
||||
|
||||
mkdir -p ${LIBREGAL}/lib
|
||||
cp lib/linux/*.so.* ${LIBREGAL}/lib/${ARCH}/
|
||||
|
||||
mkdir -p ${REGALPROGS}/bin
|
||||
cp bin/linux/* ${REGALPROGS}/bin/
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"regal" : {
|
||||
"logging" : {
|
||||
"enable" : {
|
||||
"error" : true,
|
||||
"warning" : true,
|
||||
"info" : true,
|
||||
"app" : true,
|
||||
"driver" : false,
|
||||
"internal" : false,
|
||||
"http" : false
|
||||
},
|
||||
"maxLines" : -1,
|
||||
"maxBytes" : -1,
|
||||
"once" : true,
|
||||
"frameTime" : true,
|
||||
"frameStatistics" : true,
|
||||
"pointers" : true,
|
||||
"thread" : false,
|
||||
"process" : false,
|
||||
"callback" : false,
|
||||
"log" : true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"regal" : {
|
||||
"logging" : {
|
||||
"enable" : {
|
||||
"error" : true,
|
||||
"warning" : true,
|
||||
"info" : true,
|
||||
"app" : false,
|
||||
"driver" : false,
|
||||
"internal" : false,
|
||||
"http" : true
|
||||
},
|
||||
"maxLines" : -1,
|
||||
"maxBytes" : -1,
|
||||
"once" : true,
|
||||
"frameTime" : false,
|
||||
"frameStatistics" : false,
|
||||
"pointers" : true,
|
||||
"thread" : false,
|
||||
"process" : false,
|
||||
"callback" : false,
|
||||
"log" : true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"regal" : {
|
||||
"config" : {
|
||||
"dispatch" : {
|
||||
"enable" : {
|
||||
"error" : true
|
||||
}
|
||||
}
|
||||
},
|
||||
"logging" : {
|
||||
"enable" : {
|
||||
"error" : true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"regal" : {
|
||||
"logging" : {
|
||||
"enable" : {
|
||||
"error" : false,
|
||||
"warning" : false,
|
||||
"info" : false,
|
||||
"app" : false,
|
||||
"driver" : false,
|
||||
"internal" : false,
|
||||
"http" : false
|
||||
},
|
||||
"maxLines" : -1,
|
||||
"maxBytes" : -1,
|
||||
"once" : true,
|
||||
"frameTime" : true,
|
||||
"frameStatistics" : true,
|
||||
"pointers" : true,
|
||||
"thread" : false,
|
||||
"process" : false,
|
||||
"callback" : false,
|
||||
"log" : false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"regal" : {
|
||||
"logging" : {
|
||||
"enable" : {
|
||||
"error" : true,
|
||||
"warning" : true,
|
||||
"info" : true,
|
||||
"app" : true,
|
||||
"driver" : true,
|
||||
"internal" : true,
|
||||
"http" : true
|
||||
},
|
||||
"maxLines" : -1,
|
||||
"maxBytes" : -1,
|
||||
"once" : true,
|
||||
"frameTime" : true,
|
||||
"frameStatistics" : true,
|
||||
"pointers" : true,
|
||||
"thread" : false,
|
||||
"process" : false,
|
||||
"callback" : false,
|
||||
"log" : true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
Name
|
||||
|
||||
REGAL_proc_address
|
||||
|
||||
Name Strings
|
||||
|
||||
GL_REGAL_proc_address
|
||||
|
||||
Contact
|
||||
|
||||
Nigel Stewart, NVIDIA (nstewart 'at' nvidia.com)
|
||||
|
||||
Contributors
|
||||
|
||||
None.
|
||||
|
||||
Status
|
||||
|
||||
XXX - Experimental - not approved by Khronos.
|
||||
|
||||
Version
|
||||
|
||||
Last Modified Date: January 14, 2014
|
||||
Revision: 1
|
||||
|
||||
Number
|
||||
|
||||
REGAL Extension #7
|
||||
|
||||
Dependencies
|
||||
|
||||
None.
|
||||
|
||||
Overview
|
||||
|
||||
This extension provides the same functionality as
|
||||
glutGetProcAddress as implemented by The OpenGL Utility
|
||||
Toolkit (GLUT) and freeglut.
|
||||
|
||||
It is provided as part of Regal for the purpose of
|
||||
easing the retargeting of desktop OpenGL code
|
||||
without requiring GLUT or freeglut for procedure
|
||||
address query purposes.
|
||||
|
||||
IP Status
|
||||
|
||||
No known IP claims.
|
||||
|
||||
glutGetProcAddress is implemented by The OpenGL Utility
|
||||
Toolkit (GLUT) and freeglut.
|
||||
|
||||
New Procedures and Functions
|
||||
|
||||
void *glGetProcAddressREGAL(const char *name);
|
||||
|
||||
New Types
|
||||
|
||||
None
|
||||
|
||||
New Tokens
|
||||
|
||||
None
|
||||
|
||||
Additions to Chapter x of the OpenGL 4.2 (Core Profile) Specification
|
||||
(OpenGL Operation)
|
||||
|
||||
TODO
|
||||
|
||||
Errors
|
||||
|
||||
None.
|
||||
|
||||
New State
|
||||
|
||||
None.
|
||||
|
||||
New Implementation Dependent State
|
||||
|
||||
None.
|
||||
|
||||
Issues
|
||||
|
||||
None.
|
||||
|
||||
Revision History
|
||||
|
||||
Revision 1, 2014/01/14
|
||||
- Initial revision.
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="src" path="gen"/>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>minimalAndroid</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
**
|
||||
** Copyright 2009, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.regal.alphatorus">
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||
<application
|
||||
android:icon="@drawable/ic_launcher_regal"
|
||||
android:label="@string/alphatorus_activity"
|
||||
android:debuggable="true"
|
||||
>
|
||||
<activity android:name="AlphatorusActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
<uses-feature android:glEsVersion="0x00020000"/>
|
||||
<uses-sdk android:minSdkVersion="10"/>
|
||||
</manifest>
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
# Project target.
|
||||
target=android-15
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
# Copyright (C) 2009 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
LOCAL_PATH:= $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := libalphatorus
|
||||
LOCAL_CFLAGS := -Werror
|
||||
LOCAL_ARM_MODE := arm
|
||||
|
||||
SHARED_DIR := $(LOCAL_PATH)/../../src
|
||||
|
||||
LOCAL_C_INCLUDES += $(SHARED_DIR)
|
||||
MY_SRC_FILES := gl_code.cpp $(SHARED_DIR)/render.cpp
|
||||
LOCAL_SRC_FILES := $(patsubst $(LOCAL_PATH)/%,%,$(MY_SRC_FILES))
|
||||
LOCAL_STATIC_LIBRARIES := zlib snappy
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := Regal_static apitrace
|
||||
LOCAL_CFLAGS := -DANDROID=1
|
||||
LOCAL_LDLIBS := -llog
|
||||
|
||||
#-lGLESv2
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
$(call import-add-path, $(LOCAL_PATH)/../../../../build/android/Regal)
|
||||
$(call import-module, jni)
|
||||
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
APP_STL := stlport_static
|
||||
|
||||
ifeq ($(NDK_DEBUG),1)
|
||||
$(warning NDK_DEBUG set, enabling debug build.)
|
||||
APP_OPTIM := debug
|
||||
endif
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
/*
|
||||
|
||||
This is free and unencumbered software released into the public domain.
|
||||
|
||||
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||
distribute this software, either in source code form or as a compiled
|
||||
binary, for any purpose, commercial or non-commercial, and by any
|
||||
means.
|
||||
|
||||
In jurisdictions that recognize copyright laws, the author or authors
|
||||
of this software dedicate any and all copyright interest in the
|
||||
software to the public domain. We make this dedication for the benefit
|
||||
of the public at large and to the detriment of our heirs and
|
||||
successors. We intend this dedication to be an overt act of
|
||||
relinquishment in perpetuity of all present and future rights to this
|
||||
software under copyright law.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
For more information, please refer to <http://unlicense.org/>
|
||||
|
||||
*/
|
||||
|
||||
#include <jni.h>
|
||||
#include <android/log.h>
|
||||
|
||||
#include <GL/Regal.h>
|
||||
|
||||
#include "render.h"
|
||||
|
||||
#include <cmath>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
#define LOG_TAG "alphatorus"
|
||||
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
|
||||
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
|
||||
|
||||
extern "C"
|
||||
{
|
||||
JNIEXPORT void JNICALL Java_com_regal_alphatorus_AlphatorusLib_init(JNIEnv *env, jobject obj, jint width, jint height);
|
||||
JNIEXPORT void JNICALL Java_com_regal_alphatorus_AlphatorusLib_step(JNIEnv *env, jobject obj);
|
||||
};
|
||||
|
||||
JNIEXPORT void JNICALL Java_com_regal_alphatorus_AlphatorusLib_init(JNIEnv *env, jobject obj, jint width, jint height)
|
||||
{
|
||||
// On Android there is a new context each time the application
|
||||
// is activated - we ought to clean up the Regal resources for
|
||||
// the old context, but there is no API for that yet.
|
||||
|
||||
RegalMakeCurrent(eglGetCurrentContext());
|
||||
alphaTorusInit();
|
||||
alphaTorusReshape(width, height);
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL Java_com_regal_alphatorus_AlphatorusLib_step(JNIEnv *env, jobject obj)
|
||||
{
|
||||
//glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
|
||||
alphaTorusDisplay( true );
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
# This file is automatically generated by Android Tools.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file must be checked in Version Control Systems.
|
||||
#
|
||||
# To customize properties used by the Ant build system use,
|
||||
# "ant.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-10
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.9 KiB |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue