git-svn-id: svn://10.65.10.50/branches/R_10_00@24158 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
00a5560aaf
commit
5c1c6bc8f6
31
wxPG/propgrid/build/Bakefiles.bkgen
Normal file
31
wxPG/propgrid/build/Bakefiles.bkgen
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" ?>
|
||||
|
||||
<bakefile-gen xmlns="http://www.bakefile.org/schema/bakefile-gen">
|
||||
|
||||
<!-- this tag tells bakefile_gen that the user bakefile wants to use the
|
||||
default wxCode settings found in wxCode/build/bakefiles/presets/wxcode.bkgen.
|
||||
Note that this means that such file does exist on your hard-disk at bake-time!
|
||||
-->
|
||||
<include file="../../../build/bakefiles/presets/wxcode.bkgen"/>
|
||||
|
||||
<!-- you probably need to edit only this tag replacing it with the name of
|
||||
your .bkl file:
|
||||
-->
|
||||
<input>propgrid.bkl</input>
|
||||
|
||||
<!--
|
||||
The wxCode's wxcode.bkgen file will enable some default formats.
|
||||
If you don't want a format declared there to be generated for
|
||||
your project, just use:
|
||||
|
||||
<disable-formats>xxx</disable-formats>
|
||||
|
||||
Instead, if you want to generate a format not declared there,
|
||||
use:
|
||||
|
||||
<add-formats>xxx</add-formats>
|
||||
-->
|
||||
|
||||
<add-formats>msvs2008prj</add-formats>
|
||||
|
||||
</bakefile-gen>
|
377
wxPG/propgrid/build/GNUMakefile
Normal file
377
wxPG/propgrid/build/GNUMakefile
Normal file
@ -0,0 +1,377 @@
|
||||
# =========================================================================
|
||||
# This makefile was generated by
|
||||
# Bakefile 0.2.6 (http://www.bakefile.org)
|
||||
# Do not modify, all changes will be overwritten!
|
||||
# =========================================================================
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# These are configurable options:
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
# 'install' program location
|
||||
INSTALL ?= install
|
||||
|
||||
# Location where the package is installed by 'make install'
|
||||
prefix ?= /usr/local
|
||||
|
||||
# Destination root (/ is used if empty)
|
||||
DESTDIR ?=
|
||||
|
||||
#
|
||||
AR ?= ar
|
||||
|
||||
#
|
||||
RANLIB ?= ranlib
|
||||
|
||||
# Compiler flags to link shared library
|
||||
LINK_DLL_FLAGS ?= -shared
|
||||
|
||||
# C++ compiler
|
||||
CXX = g++
|
||||
|
||||
# Standard flags for C++
|
||||
CXXFLAGS ?=
|
||||
|
||||
# Standard preprocessor flags (common for CC and CXX)
|
||||
CPPFLAGS ?=
|
||||
|
||||
# Standard linker flags
|
||||
LDFLAGS ?=
|
||||
|
||||
# Location and arguments of wx-config script
|
||||
WX_CONFIG ?= wx-config
|
||||
|
||||
# Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,mgl,mac,dfb]
|
||||
WX_PORT ?= $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 1)
|
||||
|
||||
# Use DLL build of wx library to use? [0,1]
|
||||
WX_SHARED ?= $(shell if test -z `$(WX_CONFIG) --selected-config | cut -d '-' -f 5`; then echo 1; else echo 0; fi)
|
||||
|
||||
# Compile Unicode build of wxWidgets? [0,1]
|
||||
WX_UNICODE ?= $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 2 | sed 's/unicode/1/;s/ansi/0/')
|
||||
|
||||
# Use debug build of wxWidgets (define __WXDEBUG__)? [0,1]
|
||||
WX_DEBUG ?= $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 3 | sed 's/debug/1/;s/release/0/')
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# Do not modify the rest of this file!
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
### Variables: ###
|
||||
|
||||
CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP
|
||||
WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1)
|
||||
WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2)
|
||||
WX_CONFIG_FLAGS = $(WX_CONFIG_DEBUG_FLAG) $(WX_CONFIG_UNICODE_FLAG) \
|
||||
$(WX_CONFIG_SHARED_FLAG) --toolkit=$(WX_PORT) \
|
||||
--version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR)
|
||||
PROPGRID_LIB_CXXFLAGS = $(____propgrid) $(____propgrid_3) -W -Wall -I../include \
|
||||
`$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_LIB_OBJECTS = \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_advprops.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_editors.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_extras.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_manager.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_odcombo.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_propgrid.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_props.o
|
||||
PROPGRID_LIB_HEADERS = \
|
||||
include/wx/propgrid/advprops.h \
|
||||
include/wx/propgrid/editors.h \
|
||||
include/wx/propgrid/extras.h \
|
||||
include/wx/propgrid/manager.h \
|
||||
include/wx/propgrid/odcombo.h \
|
||||
include/wx/propgrid/pg_dox_mainpage.h \
|
||||
include/wx/propgrid/propdev.h \
|
||||
include/wx/propgrid/propgrid.h \
|
||||
include/wx/propgrid/props.h \
|
||||
include/wx/propgrid/xh_propgrid.h
|
||||
PROPGRID_DLL_CXXFLAGS = $(____propgrid) $(____propgrid_3) -W -Wall -I../include \
|
||||
-DWXMAKINGDLL_PROPGRID -fPIC -DPIC `$(WX_CONFIG) --cxxflags \
|
||||
$(WX_CONFIG_FLAGS)` $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_DLL_OBJECTS = \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_advprops.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_editors.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_extras.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_manager.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_odcombo.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_propgrid.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_props.o
|
||||
PROPGRID_DLL_HEADERS = \
|
||||
include/wx/propgrid/advprops.h \
|
||||
include/wx/propgrid/editors.h \
|
||||
include/wx/propgrid/extras.h \
|
||||
include/wx/propgrid/manager.h \
|
||||
include/wx/propgrid/odcombo.h \
|
||||
include/wx/propgrid/pg_dox_mainpage.h \
|
||||
include/wx/propgrid/propdev.h \
|
||||
include/wx/propgrid/propgrid.h \
|
||||
include/wx/propgrid/props.h \
|
||||
include/wx/propgrid/xh_propgrid.h
|
||||
PROPGRIDSAMPLE_CXXFLAGS = $(____propgrid) $(____propgrid_3) -W -Wall \
|
||||
-I../include `$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` $(CPPFLAGS) \
|
||||
$(CXXFLAGS)
|
||||
PROPGRIDSAMPLE_OBJECTS = \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_minimal.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_propgridsample.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_sampleprops.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_tests.o \
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_xh_propgrid.o
|
||||
|
||||
### Conditionally set variables: ###
|
||||
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
WX_CONFIG_DEBUG_FLAG = --debug=no
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
WX_CONFIG_DEBUG_FLAG = --debug=yes
|
||||
endif
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
WX_CONFIG_UNICODE_FLAG = --unicode=no
|
||||
endif
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
WX_CONFIG_UNICODE_FLAG = --unicode=yes
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
WX_CONFIG_SHARED_FLAG = --static=yes
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
WX_CONFIG_SHARED_FLAG = --static=no
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
_BUILDDIR_SHARED_SUFFIX =
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
_BUILDDIR_SHARED_SUFFIX = _dll
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__propgrid_lib___depname = \
|
||||
../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).a
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__install_propgrid_lib___depname = install_propgrid_lib
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__uninstall_propgrid_lib___depname = uninstall_propgrid_lib
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__install_propgrid_lib_headers___depname = install_propgrid_lib_headers
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__uninstall_propgrid_lib_headers___depname = uninstall_propgrid_lib_headers
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__propgrid_dll___depname = \
|
||||
../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__install_propgrid_dll___depname = install_propgrid_dll
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__uninstall_propgrid_dll___depname = uninstall_propgrid_dll
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__install_propgrid_dll_headers___depname = install_propgrid_dll_headers
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__uninstall_propgrid_dll_headers___depname = uninstall_propgrid_dll_headers
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__propgridsample_RPATH = -Wl,-rpath,../lib/gcc_dll
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__propgrid = lib
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__propgrid = dll
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
____propgrid = -O2
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
____propgrid = -O0
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
____propgrid_3 =
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
____propgrid_3 = -g
|
||||
endif
|
||||
|
||||
|
||||
all: gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX):
|
||||
@mkdir -p gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
|
||||
### Targets: ###
|
||||
|
||||
all: test_for_selected_wxbuild $(__propgrid_lib___depname) $(__propgrid_dll___depname) ../samples/propgridsample
|
||||
|
||||
install: $(__install_propgrid_lib___depname) $(__install_propgrid_lib_headers___depname) $(__install_propgrid_dll___depname) $(__install_propgrid_dll_headers___depname)
|
||||
|
||||
uninstall: $(__uninstall_propgrid_lib___depname) $(__uninstall_propgrid_lib_headers___depname) $(__uninstall_propgrid_dll___depname) $(__uninstall_propgrid_dll_headers___depname)
|
||||
|
||||
clean:
|
||||
rm -f gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/*.o
|
||||
rm -f gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/*.d
|
||||
rm -f ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).a
|
||||
rm -f ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so
|
||||
rm -f ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so
|
||||
rm -f ../samples/propgridsample
|
||||
|
||||
test_for_selected_wxbuild:
|
||||
@$(WX_CONFIG) $(WX_CONFIG_FLAGS)
|
||||
|
||||
ifeq ($(WX_SHARED),0)
|
||||
../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).a: make_dir_propgrid_lib $(PROPGRID_LIB_OBJECTS)
|
||||
rm -f $@
|
||||
$(AR) rcu $@ $(PROPGRID_LIB_OBJECTS)
|
||||
$(RANLIB) $@
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),0)
|
||||
install_propgrid_lib: $(__propgrid_lib___depname)
|
||||
$(INSTALL) -d $(DESTDIR)$(prefix)/lib
|
||||
$(INSTALL) -m 644 ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).a $(DESTDIR)$(prefix)/lib
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),0)
|
||||
uninstall_propgrid_lib:
|
||||
rm -f $(DESTDIR)$(prefix)/lib/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).a
|
||||
endif
|
||||
|
||||
make_dir_propgrid_lib:
|
||||
@mkdir -p ../lib/gcc_$(__propgrid)
|
||||
|
||||
ifeq ($(WX_SHARED),0)
|
||||
install_propgrid_lib_headers:
|
||||
$(INSTALL) -d $(DESTDIR)$(prefix)
|
||||
for f in $(PROPGRID_LIB_HEADERS); do \
|
||||
if test ! -d $(DESTDIR)$(prefix)/`dirname $$f` ; then \
|
||||
$(INSTALL) -d $(DESTDIR)$(prefix)/`dirname $$f`; \
|
||||
fi; \
|
||||
$(INSTALL) -m 644 ../$$f $(DESTDIR)$(prefix)/$$f; \
|
||||
done
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),0)
|
||||
uninstall_propgrid_lib_headers:
|
||||
for f in $(PROPGRID_LIB_HEADERS); do \
|
||||
rm -f $(DESTDIR)$(prefix)/$$f; \
|
||||
done
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),1)
|
||||
../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so: make_dir_propgrid_dll $(PROPGRID_DLL_OBJECTS)
|
||||
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ $(PROPGRID_DLL_OBJECTS) $(____propgrid_3) -L../lib $(LDFLAGS) `$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs adv,core,base`
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),1)
|
||||
install_propgrid_dll: $(__propgrid_dll___depname)
|
||||
$(INSTALL) -d $(DESTDIR)$(prefix)/lib
|
||||
$(INSTALL) -m 644 ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so $(DESTDIR)$(prefix)/lib
|
||||
install -c ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so $(DESTDIR)$(prefix)/lib
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),1)
|
||||
uninstall_propgrid_dll:
|
||||
rm -f $(DESTDIR)$(prefix)/lib/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so
|
||||
rm -f $(DESTDIR)$(prefix)/lib/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).so
|
||||
endif
|
||||
|
||||
make_dir_propgrid_dll:
|
||||
@mkdir -p ../lib/gcc_$(__propgrid)
|
||||
|
||||
ifeq ($(WX_SHARED),1)
|
||||
install_propgrid_dll_headers:
|
||||
$(INSTALL) -d $(DESTDIR)$(prefix)
|
||||
for f in $(PROPGRID_DLL_HEADERS); do \
|
||||
if test ! -d $(DESTDIR)$(prefix)/`dirname $$f` ; then \
|
||||
$(INSTALL) -d $(DESTDIR)$(prefix)/`dirname $$f`; \
|
||||
fi; \
|
||||
$(INSTALL) -m 644 ../$$f $(DESTDIR)$(prefix)/$$f; \
|
||||
done
|
||||
endif
|
||||
|
||||
ifeq ($(WX_SHARED),1)
|
||||
uninstall_propgrid_dll_headers:
|
||||
for f in $(PROPGRID_DLL_HEADERS); do \
|
||||
rm -f $(DESTDIR)$(prefix)/$$f; \
|
||||
done
|
||||
endif
|
||||
|
||||
../samples/propgridsample: $(PROPGRIDSAMPLE_OBJECTS) make_sample_dir_propgridsample $(__propgrid_lib___depname)
|
||||
$(CXX) -o $@ $(PROPGRIDSAMPLE_OBJECTS) $(____propgrid_3) -L../lib $(__propgridsample_RPATH) $(LDFLAGS) ../lib/gcc_$(__propgrid)/libwxcode_$(WX_PORT)_propgrid-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR).a `$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs xrc,html,xml,adv,core,base`
|
||||
|
||||
make_sample_dir_propgridsample:
|
||||
@mkdir -p ../samples
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_advprops.o: ../src/advprops.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_editors.o: ../src/editors.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_extras.o: ../src/extras.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_manager.o: ../src/manager.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_odcombo.o: ../src/odcombo.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_propgrid.o: ../src/propgrid.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_lib_props.o: ../src/props.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_advprops.o: ../src/advprops.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_editors.o: ../src/editors.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_extras.o: ../src/extras.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_manager.o: ../src/manager.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_odcombo.o: ../src/odcombo.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_propgrid.o: ../src/propgrid.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgrid_dll_props.o: ../src/props.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_minimal.o: ../samples/minimal.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_propgridsample.o: ../samples/propgridsample.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_sampleprops.o: ../samples/sampleprops.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_tests.o: ../samples/tests.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/propgridsample_xh_propgrid.o: ../src/xh_propgrid.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
.PHONY: all install uninstall clean install_propgrid_lib uninstall_propgrid_lib \
|
||||
install_propgrid_lib_headers uninstall_propgrid_lib_headers \
|
||||
install_propgrid_dll uninstall_propgrid_dll install_propgrid_dll_headers \
|
||||
uninstall_propgrid_dll_headers
|
||||
|
||||
|
||||
# Dependencies tracking:
|
||||
-include gcc$(WX_PORT)$(_BUILDDIR_SHARED_SUFFIX)/*.d
|
146
wxPG/propgrid/build/autoconf_inc.m4
Normal file
146
wxPG/propgrid/build/autoconf_inc.m4
Normal file
@ -0,0 +1,146 @@
|
||||
dnl ### begin block 00_header[propgrid.bkl] ###
|
||||
dnl
|
||||
dnl This macro was generated by
|
||||
dnl Bakefile 0.2.6 (http://www.bakefile.org)
|
||||
dnl Do not modify, all changes will be overwritten!
|
||||
|
||||
BAKEFILE_AUTOCONF_INC_M4_VERSION="0.2.6"
|
||||
|
||||
dnl ### begin block 20_COND_DEPS_TRACKING_0[propgrid.bkl] ###
|
||||
COND_DEPS_TRACKING_0="#"
|
||||
if test "x$DEPS_TRACKING" = "x0" ; then
|
||||
COND_DEPS_TRACKING_0=""
|
||||
fi
|
||||
AC_SUBST(COND_DEPS_TRACKING_0)
|
||||
dnl ### begin block 20_COND_DEPS_TRACKING_1[propgrid.bkl] ###
|
||||
COND_DEPS_TRACKING_1="#"
|
||||
if test "x$DEPS_TRACKING" = "x1" ; then
|
||||
COND_DEPS_TRACKING_1=""
|
||||
fi
|
||||
AC_SUBST(COND_DEPS_TRACKING_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_MACOSX_0_USE_SOVERCYGWIN_0_USE_SOVERSION_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_MACOSX_0_USE_SOVERCYGWIN_0_USE_SOVERSION_1="#"
|
||||
if test "x$PLATFORM_MACOSX" = "x0" -a "x$USE_SOVERCYGWIN" = "x0" -a "x$USE_SOVERSION" = "x1" ; then
|
||||
COND_PLATFORM_MACOSX_0_USE_SOVERCYGWIN_0_USE_SOVERSION_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_MACOSX_0_USE_SOVERCYGWIN_0_USE_SOVERSION_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_MACOSX_0_USE_SOVERSION_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_MACOSX_0_USE_SOVERSION_1="#"
|
||||
if test "x$PLATFORM_MACOSX" = "x0" -a "x$USE_SOVERSION" = "x1" ; then
|
||||
COND_PLATFORM_MACOSX_0_USE_SOVERSION_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_MACOSX_0_USE_SOVERSION_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_MACOSX_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_MACOSX_1="#"
|
||||
if test "x$PLATFORM_MACOSX" = "x1" ; then
|
||||
COND_PLATFORM_MACOSX_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_MACOSX_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_MACOSX_1_USE_SOVERSION_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_MACOSX_1_USE_SOVERSION_1="#"
|
||||
if test "x$PLATFORM_MACOSX" = "x1" -a "x$USE_SOVERSION" = "x1" ; then
|
||||
COND_PLATFORM_MACOSX_1_USE_SOVERSION_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_MACOSX_1_USE_SOVERSION_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_MAC_0[propgrid.bkl] ###
|
||||
COND_PLATFORM_MAC_0="#"
|
||||
if test "x$PLATFORM_MAC" = "x0" ; then
|
||||
COND_PLATFORM_MAC_0=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_MAC_0)
|
||||
dnl ### begin block 20_COND_PLATFORM_MAC_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_MAC_1="#"
|
||||
if test "x$PLATFORM_MAC" = "x1" ; then
|
||||
COND_PLATFORM_MAC_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_MAC_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_OS2_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_OS2_1="#"
|
||||
if test "x$PLATFORM_OS2" = "x1" ; then
|
||||
COND_PLATFORM_OS2_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_OS2_1)
|
||||
dnl ### begin block 20_COND_PLATFORM_WIN32_1[propgrid.bkl] ###
|
||||
COND_PLATFORM_WIN32_1="#"
|
||||
if test "x$PLATFORM_WIN32" = "x1" ; then
|
||||
COND_PLATFORM_WIN32_1=""
|
||||
fi
|
||||
AC_SUBST(COND_PLATFORM_WIN32_1)
|
||||
dnl ### begin block 20_COND_USE_SOSYMLINKS_1[propgrid.bkl] ###
|
||||
COND_USE_SOSYMLINKS_1="#"
|
||||
if test "x$USE_SOSYMLINKS" = "x1" ; then
|
||||
COND_USE_SOSYMLINKS_1=""
|
||||
fi
|
||||
AC_SUBST(COND_USE_SOSYMLINKS_1)
|
||||
dnl ### begin block 20_COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1[propgrid.bkl] ###
|
||||
COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1="#"
|
||||
if test "x$USE_SOVERCYGWIN" = "x1" -a "x$USE_SOVERSION" = "x1" ; then
|
||||
COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1=""
|
||||
fi
|
||||
AC_SUBST(COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1)
|
||||
dnl ### begin block 20_COND_USE_SOVERLINUX_1[propgrid.bkl] ###
|
||||
COND_USE_SOVERLINUX_1="#"
|
||||
if test "x$USE_SOVERLINUX" = "x1" ; then
|
||||
COND_USE_SOVERLINUX_1=""
|
||||
fi
|
||||
AC_SUBST(COND_USE_SOVERLINUX_1)
|
||||
dnl ### begin block 20_COND_USE_SOVERSION_0[propgrid.bkl] ###
|
||||
COND_USE_SOVERSION_0="#"
|
||||
if test "x$USE_SOVERSION" = "x0" ; then
|
||||
COND_USE_SOVERSION_0=""
|
||||
fi
|
||||
AC_SUBST(COND_USE_SOVERSION_0)
|
||||
dnl ### begin block 20_COND_USE_SOVERSOLARIS_1[propgrid.bkl] ###
|
||||
COND_USE_SOVERSOLARIS_1="#"
|
||||
if test "x$USE_SOVERSOLARIS" = "x1" ; then
|
||||
COND_USE_SOVERSOLARIS_1=""
|
||||
fi
|
||||
AC_SUBST(COND_USE_SOVERSOLARIS_1)
|
||||
dnl ### begin block 20_COND_WINDOWS_IMPLIB_1[propgrid.bkl] ###
|
||||
COND_WINDOWS_IMPLIB_1="#"
|
||||
if test "x$WINDOWS_IMPLIB" = "x1" ; then
|
||||
COND_WINDOWS_IMPLIB_1=""
|
||||
fi
|
||||
AC_SUBST(COND_WINDOWS_IMPLIB_1)
|
||||
dnl ### begin block 20_COND_WX_DEBUG_0[propgrid.bkl] ###
|
||||
COND_WX_DEBUG_0="#"
|
||||
if test "x$WX_DEBUG" = "x0" ; then
|
||||
COND_WX_DEBUG_0=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_DEBUG_0)
|
||||
dnl ### begin block 20_COND_WX_DEBUG_0_WX_UNICODE_1[propgrid.bkl] ###
|
||||
COND_WX_DEBUG_0_WX_UNICODE_1="#"
|
||||
if test "x$WX_DEBUG" = "x0" -a "x$WX_UNICODE" = "x1" ; then
|
||||
COND_WX_DEBUG_0_WX_UNICODE_1=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_DEBUG_0_WX_UNICODE_1)
|
||||
dnl ### begin block 20_COND_WX_DEBUG_1[propgrid.bkl] ###
|
||||
COND_WX_DEBUG_1="#"
|
||||
if test "x$WX_DEBUG" = "x1" ; then
|
||||
COND_WX_DEBUG_1=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_DEBUG_1)
|
||||
dnl ### begin block 20_COND_WX_DEBUG_1_WX_UNICODE_0[propgrid.bkl] ###
|
||||
COND_WX_DEBUG_1_WX_UNICODE_0="#"
|
||||
if test "x$WX_DEBUG" = "x1" -a "x$WX_UNICODE" = "x0" ; then
|
||||
COND_WX_DEBUG_1_WX_UNICODE_0=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_DEBUG_1_WX_UNICODE_0)
|
||||
dnl ### begin block 20_COND_WX_DEBUG_1_WX_UNICODE_1[propgrid.bkl] ###
|
||||
COND_WX_DEBUG_1_WX_UNICODE_1="#"
|
||||
if test "x$WX_DEBUG" = "x1" -a "x$WX_UNICODE" = "x1" ; then
|
||||
COND_WX_DEBUG_1_WX_UNICODE_1=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_DEBUG_1_WX_UNICODE_1)
|
||||
dnl ### begin block 20_COND_WX_SHARED_0[propgrid.bkl] ###
|
||||
COND_WX_SHARED_0="#"
|
||||
if test "x$WX_SHARED" = "x0" ; then
|
||||
COND_WX_SHARED_0=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_SHARED_0)
|
||||
dnl ### begin block 20_COND_WX_SHARED_1[propgrid.bkl] ###
|
||||
COND_WX_SHARED_1="#"
|
||||
if test "x$WX_SHARED" = "x1" ; then
|
||||
COND_WX_SHARED_1=""
|
||||
fi
|
||||
AC_SUBST(COND_WX_SHARED_1)
|
1465
wxPG/propgrid/build/config.guess
vendored
Normal file
1465
wxPG/propgrid/build/config.guess
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1579
wxPG/propgrid/build/config.sub
vendored
Normal file
1579
wxPG/propgrid/build/config.sub
vendored
Normal file
File diff suppressed because it is too large
Load Diff
90
wxPG/propgrid/build/configure.ac
Normal file
90
wxPG/propgrid/build/configure.ac
Normal file
@ -0,0 +1,90 @@
|
||||
# ======================================================================================
|
||||
# Author: Francesco Montorsi
|
||||
#
|
||||
# A basic "configure.ac" for a wxCode component.
|
||||
#
|
||||
# Customized for propgrid by gen_makefile.py.
|
||||
#
|
||||
# See
|
||||
# http://www.gnu.org/software/autoconf/manual/html_node/index.html
|
||||
# for more info about autoconf and the autoconf macros.
|
||||
# ======================================================================================
|
||||
|
||||
|
||||
# Init this configure script with basic info about the component
|
||||
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS)
|
||||
|
||||
# NOTE: you'll want to replace the first string in [] brackets with the name of your
|
||||
# component, the second string with its version and third one with your mail
|
||||
# (so that users will be able to contact you in case they have problems)
|
||||
AC_INIT([PROPGRID], [1.4.13], [jmsalli@users.sourceforge.net])
|
||||
AC_CONFIG_AUX_DIR(build) # this is needed, don't touch it
|
||||
|
||||
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT
|
||||
# (you won't need it unless you get in troubles)
|
||||
#WX_DEBUG_CONFIGURE=1
|
||||
|
||||
# you need the wxCode/build/bakefiles in your local repository to generate a configure
|
||||
# script from this configure.ac file since wxcode.m4 is required....
|
||||
m4_include(../../../build/autoconf/wxcode.m4)
|
||||
WXCODE_INIT
|
||||
|
||||
|
||||
|
||||
|
||||
## CONFIGURE OPTIONS
|
||||
##
|
||||
## Before starting checks, declare the options of this configure script
|
||||
## Here you should use the AC_ARG_ENABLE and AC_ARG_WITH macros,
|
||||
## or the wxCode-specific AM_WXCODE_ARG_ENABLE & AM_WXCODE_ARG_WITH macros,
|
||||
## to add to this configure script the --enable-XXX and/or --with-XXX
|
||||
## options required. If you did not use any <option> tag in your
|
||||
## component's bakefile, then you can leave this section as is
|
||||
#####################################################################
|
||||
|
||||
# this macro will declare various options for this configure script
|
||||
# looking at the comma-separed list passed as argument:
|
||||
# --enable-debug when 'debug' is in the list
|
||||
# --enable-unicode when 'unicode' is in the list
|
||||
# --enable-shared when 'shared' is in the list
|
||||
# --with-toolkit when 'toolkit' is in the list
|
||||
# --with-wxshared when 'wxshared' is in the list
|
||||
# --with-wxversion when 'wxversion' is in the list
|
||||
#
|
||||
# All these options will default to an "auto" value which means that
|
||||
# wx-config will be used to find a matching wxWidgets build and that
|
||||
# the project will then be built with the same wxWidgets configuration.
|
||||
#
|
||||
# NOTE: you typically won't need to touch anything in this section
|
||||
WXCODE_OPTIONS([debug,unicode,shared,toolkit,wxshared,wxversion])
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## CONFIGURE CHECKS
|
||||
##
|
||||
## Here you should use the AC_CHECK_LIB, AC_COMPILE_IFELSE,
|
||||
## AC_LINK_IFELSE, etc macros to check that the libraries required
|
||||
## by your component exist on the host machine and match your
|
||||
## required options (version, build settings, etc)
|
||||
#####################################################################
|
||||
|
||||
# argument 1: here put the minimum required version of wx
|
||||
# argument 2: here you must put a comma-separed list of all wx libraries required
|
||||
# by your project.
|
||||
# If your project builds multiple targets the libraries listed here are
|
||||
# passed to the linker for *all* targets (thus you'll need to write here
|
||||
# the union of all wx-library sets used by your targets).
|
||||
# NOTE: the libraries should be listed in the correct order: from
|
||||
# the most-advanced to the basic ones (e.g. 'base' _must_
|
||||
# always be the last listed library).
|
||||
WXCODE_CHECKS([2.6.4], [xrc,html,xml,adv,core,base]) # e.g. we need at least wxWidgets 2.8 to work and
|
||||
# we want to link against wxCore and wxBase libs
|
||||
|
||||
# Other things which can be useful to add here can be:
|
||||
# AC_PROG_CC if you want to compile .c sources and not only .cpp ones
|
||||
# CPPFLAGS="$CPPFLAGS `pkg-config gtk+-2.0 --cflags`" if you want to use GTK+ 2 headers directly
|
||||
|
||||
# end in a nice way the configure script
|
||||
WXCODE_END
|
401
wxPG/propgrid/build/makefile.bcc
Normal file
401
wxPG/propgrid/build/makefile.bcc
Normal file
@ -0,0 +1,401 @@
|
||||
# =========================================================================
|
||||
# This makefile was generated by
|
||||
# Bakefile 0.2.6 (http://www.bakefile.org)
|
||||
# Do not modify, all changes will be overwritten!
|
||||
# =========================================================================
|
||||
|
||||
.autodepend
|
||||
|
||||
!ifndef BCCDIR
|
||||
!ifndef MAKEDIR
|
||||
!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
|
||||
!endif
|
||||
BCCDIR = $(MAKEDIR)\..
|
||||
!endif
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# These are configurable options:
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
# C++ compiler
|
||||
!ifndef CXX
|
||||
CXX = bcc32
|
||||
!endif
|
||||
|
||||
# Standard flags for C++
|
||||
!ifndef CXXFLAGS
|
||||
CXXFLAGS =
|
||||
!endif
|
||||
|
||||
# Standard preprocessor flags (common for CC and CXX)
|
||||
!ifndef CPPFLAGS
|
||||
CPPFLAGS = -a8 -g0
|
||||
!endif
|
||||
|
||||
# Standard linker flags
|
||||
!ifndef LDFLAGS
|
||||
LDFLAGS =
|
||||
!endif
|
||||
|
||||
# Use DLL build of wx library? [0,1]
|
||||
!ifndef WX_SHARED
|
||||
WX_SHARED = 0
|
||||
!endif
|
||||
|
||||
# Use Unicode build of wxWidgets? [0,1]
|
||||
!ifndef WX_UNICODE
|
||||
WX_UNICODE = 0
|
||||
!endif
|
||||
|
||||
# Use debug build of wxWidgets (define __WXDEBUG__)? [0,1]
|
||||
!ifndef WX_DEBUG
|
||||
WX_DEBUG = 1
|
||||
!endif
|
||||
|
||||
# Use monolithic build of wxWidgets? [0,1]
|
||||
!ifndef WX_MONOLITHIC
|
||||
WX_MONOLITHIC = 0
|
||||
!endif
|
||||
|
||||
# The directory where wxWidgets library is installed
|
||||
!ifndef WX_DIR
|
||||
WX_DIR = $(WXWIN)
|
||||
!endif
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# Do not modify the rest of this file!
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
### Variables: ###
|
||||
|
||||
PROPGRID_LIB_CXXFLAGS = -I$(BCCDIR)\include $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -D__WXMSW__ \
|
||||
-I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_6) -I..\include $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_LIB_OBJECTS = \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.obj
|
||||
PROPGRID_DLL_CXXFLAGS = -I$(BCCDIR)\include $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -D__WXMSW__ \
|
||||
-I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_6) -I..\include -DWXMAKINGDLL_PROPGRID \
|
||||
$(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_DLL_OBJECTS = \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.obj
|
||||
PROPGRIDSAMPLE_CXXFLAGS = -I$(BCCDIR)\include $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -D__WXMSW__ \
|
||||
-I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_6) -I..\include $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRIDSAMPLE_OBJECTS = \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.obj \
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.obj
|
||||
|
||||
### Conditionally set variables: ###
|
||||
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
WX3RDPARTYLIBPOSTFIX = d
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
_BUILDDIR_SHARED_SUFFIX =
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
_BUILDDIR_SHARED_SUFFIX = _dll
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
__propgrid_lib___depname = \
|
||||
..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
__propgrid_dll___depname = \
|
||||
..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
____WX_SHARED_11_p_1 =
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
____WX_SHARED_11_p_1 = -dWXUSINGDLL
|
||||
!endif
|
||||
!if "$(WX_UNICODE)" == "1"
|
||||
__WXUNICODE_DEFINE_p_4 = -d_UNICODE
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
__WXDEBUG_DEFINE_p_4 = -d__WXDEBUG__
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28u_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28d_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28ud_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28u_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28d_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28ud_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XML_NAME_p = wxbase28_xml.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XML_NAME_p = wxbase28u_xml.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XML_NAME_p = wxbase28d_xml.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XML_NAME_p = wxbase28ud_xml.lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
____WX_SHARED =
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
____WX_SHARED = -DWXUSINGDLL
|
||||
!endif
|
||||
!if "$(WX_UNICODE)" == "1"
|
||||
__WXUNICODE_DEFINE_p = -D_UNICODE
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
__WXDEBUG_DEFINE_p = -D__WXDEBUG__
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
____propgrid = -O2
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
____propgrid = -Od
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
____propgrid_5 = lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
____propgrid_5 = dll
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28u_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28d_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28ud_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28u_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28d_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28ud_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxbase28.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxbase28u.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28u.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxbase28d.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxbase28ud.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28d.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28ud.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
WXLIBPOSTFIX = u
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "0"
|
||||
WXLIBPOSTFIX = d
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "1"
|
||||
WXLIBPOSTFIX = ud
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
WXLIBPATH = \lib\bcc_lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
WXLIBPATH = \lib\bcc_dll
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
____propgrid_6 = -v-
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
____propgrid_6 = -v
|
||||
!endif
|
||||
|
||||
|
||||
all: bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX):
|
||||
-if not exist bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX) mkdir bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
|
||||
### Targets: ###
|
||||
|
||||
all: test_for_selected_wxbuild $(__propgrid_lib___depname) $(__propgrid_dll___depname) ..\samples\propgridsample.exe
|
||||
|
||||
clean:
|
||||
-if exist bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.obj del bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.obj
|
||||
-if exist bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.res del bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.res
|
||||
-if exist bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.csm del bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.csm
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.tds del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.tds
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ilc del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ilc
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ild del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ild
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ilf del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ilf
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ils del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ils
|
||||
-if exist ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib del ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
-if exist ..\samples\propgridsample.exe del ..\samples\propgridsample.exe
|
||||
-if exist ..\samples\propgridsample.tds del ..\samples\propgridsample.tds
|
||||
-if exist ..\samples\propgridsample.ilc del ..\samples\propgridsample.ilc
|
||||
-if exist ..\samples\propgridsample.ild del ..\samples\propgridsample.ild
|
||||
-if exist ..\samples\propgridsample.ilf del ..\samples\propgridsample.ilf
|
||||
-if exist ..\samples\propgridsample.ils del ..\samples\propgridsample.ils
|
||||
|
||||
test_for_selected_wxbuild:
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo The selected wxWidgets build is not available!
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo Please use the options prefixed with WX_ to select another wxWidgets build.
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
exit 1
|
||||
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib: make_dir_propgrid_lib $(PROPGRID_LIB_OBJECTS)
|
||||
if exist $@ del $@
|
||||
tlib /a /p4096 $@ @&&|
|
||||
$(PROPGRID_LIB_OBJECTS)
|
||||
|
|
||||
!endif
|
||||
|
||||
make_dir_propgrid_lib:
|
||||
if not exist ..\lib\bcc_$(____propgrid_5) mkdir ..\lib\bcc_$(____propgrid_5)
|
||||
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll: make_dir_propgrid_dll $(PROPGRID_DLL_OBJECTS)
|
||||
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk -L$(WX_DIR)$(WXLIBPATH) $(____propgrid_6) -L..$(WXLIBPATH) $(LDFLAGS) @&&|
|
||||
c0d32.obj $(PROPGRID_DLL_OBJECTS),$@,, $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) wxtiff$(WX3RDPARTYLIBPOSTFIX).lib wxjpeg$(WX3RDPARTYLIBPOSTFIX).lib wxpng$(WX3RDPARTYLIBPOSTFIX).lib wxzlib$(WX3RDPARTYLIBPOSTFIX).lib wxregex$(WXLIBPOSTFIX).lib wxexpat$(WX3RDPARTYLIBPOSTFIX).lib ole2w32.lib odbc32.lib oleacc.lib import32.lib cw32.lib,,
|
||||
|
|
||||
implib -f ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid $@
|
||||
!endif
|
||||
|
||||
make_dir_propgrid_dll:
|
||||
if not exist ..\lib\bcc_$(____propgrid_5) mkdir ..\lib\bcc_$(____propgrid_5)
|
||||
|
||||
..\samples\propgridsample.exe: $(PROPGRIDSAMPLE_OBJECTS) make_sample_dir_propgridsample bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res $(__propgrid_lib___depname)
|
||||
ilink32 -Tpe -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk -L$(WX_DIR)$(WXLIBPATH) $(____propgrid_6) -L..$(WXLIBPATH) -aa $(LDFLAGS) @&&|
|
||||
c0w32.obj $(PROPGRIDSAMPLE_OBJECTS),$@,, ..\lib\bcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib $(__WXLIB_XRC_NAME_p) $(__WXLIB_HTML_NAME_p) $(__WXLIB_XML_NAME_p) $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) wxtiff$(WX3RDPARTYLIBPOSTFIX).lib wxjpeg$(WX3RDPARTYLIBPOSTFIX).lib wxpng$(WX3RDPARTYLIBPOSTFIX).lib wxzlib$(WX3RDPARTYLIBPOSTFIX).lib wxregex$(WXLIBPOSTFIX).lib wxexpat$(WX3RDPARTYLIBPOSTFIX).lib ole2w32.lib odbc32.lib oleacc.lib import32.lib cw32.lib,, bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res
|
||||
|
|
||||
|
||||
make_sample_dir_propgridsample:
|
||||
if not exist ..\samples mkdir ..\samples
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.obj: ..\src\advprops.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\advprops.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.obj: ..\src\editors.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\editors.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.obj: ..\src\extras.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\extras.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.obj: ..\src\manager.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\manager.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.obj: ..\src\odcombo.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\odcombo.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.obj: ..\src\propgrid.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\propgrid.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.obj: ..\src\props.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\props.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.obj: ..\src\advprops.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\advprops.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.obj: ..\src\editors.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\editors.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.obj: ..\src\extras.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\extras.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.obj: ..\src\manager.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\manager.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.obj: ..\src\odcombo.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\odcombo.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.obj: ..\src\propgrid.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\propgrid.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.obj: ..\src\props.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\props.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.obj: ..\samples\minimal.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\minimal.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.obj: ..\samples\propgridsample.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\propgridsample.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.obj: ..\samples\sampleprops.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\sampleprops.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.obj: ..\samples\tests.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\tests.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.obj: ..\src\xh_propgrid.cpp
|
||||
$(CXX) -q -c -P -o$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\src\xh_propgrid.cpp
|
||||
|
||||
bccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res: ..\samples\sample.rc
|
||||
brcc32 -32 -r -fo$@ -i$(BCCDIR)\include $(____WX_SHARED_11_p_1) $(__WXUNICODE_DEFINE_p_4) $(__WXDEBUG_DEFINE_p_4) -d__WXMSW__ -i$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -i$(WX_DIR)\include -i..\include -i..\samples ..\samples\sample.rc
|
||||
|
489
wxPG/propgrid/build/makefile.gcc
Normal file
489
wxPG/propgrid/build/makefile.gcc
Normal file
@ -0,0 +1,489 @@
|
||||
# =========================================================================
|
||||
# This makefile was generated by
|
||||
# Bakefile 0.2.6 (http://www.bakefile.org)
|
||||
# Do not modify, all changes will be overwritten!
|
||||
# =========================================================================
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# These are configurable options:
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
# Compiler flags to link shared library
|
||||
LINK_DLL_FLAGS ?= -shared
|
||||
|
||||
# C++ compiler
|
||||
CXX = g++
|
||||
|
||||
# Standard flags for C++
|
||||
CXXFLAGS ?=
|
||||
|
||||
# Standard preprocessor flags (common for CC and CXX)
|
||||
CPPFLAGS ?=
|
||||
|
||||
# Standard linker flags
|
||||
LDFLAGS ?=
|
||||
|
||||
# Use DLL build of wx library? [0,1]
|
||||
WX_SHARED ?= 0
|
||||
|
||||
# Use Unicode build of wxWidgets? [0,1]
|
||||
WX_UNICODE ?= 0
|
||||
|
||||
# Use debug build of wxWidgets (define __WXDEBUG__)? [0,1]
|
||||
WX_DEBUG ?= 1
|
||||
|
||||
# Use monolithic build of wxWidgets? [0,1]
|
||||
WX_MONOLITHIC ?= 0
|
||||
|
||||
# The directory where wxWidgets library is installed
|
||||
WX_DIR ?= $(WXWIN)
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# Do not modify the rest of this file!
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
### Variables: ###
|
||||
|
||||
CPPDEPS = -MT$@ -MF$@.d -MD -MP
|
||||
PROPGRID_LIB_CXXFLAGS = -DHAVE_W32API_H $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -D__WXMSW__ \
|
||||
-I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_6) -W -Wall -I..\include $(CPPFLAGS) \
|
||||
$(CXXFLAGS)
|
||||
PROPGRID_LIB_OBJECTS = \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.o
|
||||
PROPGRID_DLL_CXXFLAGS = -DHAVE_W32API_H $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -D__WXMSW__ \
|
||||
-I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_6) -W -Wall -I..\include \
|
||||
-DWXMAKINGDLL_PROPGRID $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_DLL_OBJECTS = \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.o
|
||||
PROPGRIDSAMPLE_CXXFLAGS = -DHAVE_W32API_H $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -D__WXMSW__ \
|
||||
-I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_6) -W -Wall -I..\include $(CPPFLAGS) \
|
||||
$(CXXFLAGS)
|
||||
PROPGRIDSAMPLE_OBJECTS = \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.o \
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample_rc.o
|
||||
|
||||
### Conditionally set variables: ###
|
||||
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
WX3RDPARTYLIBPOSTFIX = d
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
_BUILDDIR_SHARED_SUFFIX =
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
_BUILDDIR_SHARED_SUFFIX = _dll
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
__propgrid_lib___depname = \
|
||||
..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
__propgrid_dll___depname = \
|
||||
..\lib\gcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
____WX_SHARED_11_p_1 =
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
____WX_SHARED_11_p_1 = --define WXUSINGDLL
|
||||
endif
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXUNICODE_DEFINE_p_4 = --define _UNICODE
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
__WXDEBUG_DEFINE_p_4 = --define __WXDEBUG__
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_XRC_NAME_p = -lwxmsw28_xrc
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_XRC_NAME_p = -lwxmsw28u_xrc
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_XRC_NAME_p = -lwxmsw28d_xrc
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_XRC_NAME_p = -lwxmsw28ud_xrc
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_HTML_NAME_p = -lwxmsw28_html
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_HTML_NAME_p = -lwxmsw28u_html
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_HTML_NAME_p = -lwxmsw28d_html
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_HTML_NAME_p = -lwxmsw28ud_html
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_XML_NAME_p = -lwxbase28_xml
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_XML_NAME_p = -lwxbase28u_xml
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_XML_NAME_p = -lwxbase28d_xml
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_XML_NAME_p = -lwxbase28ud_xml
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
____WX_SHARED =
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
____WX_SHARED = -DWXUSINGDLL
|
||||
endif
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXUNICODE_DEFINE_p = -D_UNICODE
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
__WXDEBUG_DEFINE_p = -D__WXDEBUG__
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
WXLIBPOSTFIX = u
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
WXLIBPOSTFIX = d
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
WXLIBPOSTFIX = ud
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
____propgrid = -O2
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
____propgrid = -O0
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
____propgrid_5 = lib
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
____propgrid_5 = dll
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_ADV_NAME_p = -lwxmsw28_adv
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_ADV_NAME_p = -lwxmsw28u_adv
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_ADV_NAME_p = -lwxmsw28d_adv
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_ADV_NAME_p = -lwxmsw28ud_adv
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_CORE_NAME_p = -lwxmsw28_core
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_CORE_NAME_p = -lwxmsw28u_core
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_CORE_NAME_p = -lwxmsw28d_core
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_CORE_NAME_p = -lwxmsw28ud_core
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_BASE_NAME_p = -lwxbase28
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_BASE_NAME_p = -lwxbase28u
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),1)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_BASE_NAME_p = -lwxmsw28
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
ifeq ($(WX_MONOLITHIC),1)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_BASE_NAME_p = -lwxmsw28u
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_BASE_NAME_p = -lwxbase28d
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),0)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_BASE_NAME_p = -lwxbase28ud
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),1)
|
||||
ifeq ($(WX_UNICODE),0)
|
||||
__WXLIB_BASE_NAME_p = -lwxmsw28d
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
ifeq ($(WX_MONOLITHIC),1)
|
||||
ifeq ($(WX_UNICODE),1)
|
||||
__WXLIB_BASE_NAME_p = -lwxmsw28ud
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(WX_SHARED),0)
|
||||
WXLIBPATH = \lib\gcc_lib
|
||||
endif
|
||||
ifeq ($(WX_SHARED),1)
|
||||
WXLIBPATH = \lib\gcc_dll
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),0)
|
||||
____propgrid_6 =
|
||||
endif
|
||||
ifeq ($(WX_DEBUG),1)
|
||||
____propgrid_6 = -g
|
||||
endif
|
||||
|
||||
|
||||
all: gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX):
|
||||
-if not exist gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX) mkdir gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
|
||||
### Targets: ###
|
||||
|
||||
all: test_for_selected_wxbuild $(__propgrid_lib___depname) $(__propgrid_dll___depname) ..\samples\propgridsample.exe
|
||||
|
||||
clean:
|
||||
-if exist gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.o del gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.o
|
||||
-if exist gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.d del gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.d
|
||||
-if exist ..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a del ..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a
|
||||
-if exist ..\lib\gcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll del ..\lib\gcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
-if exist ..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a del ..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a
|
||||
-if exist ..\samples\propgridsample.exe del ..\samples\propgridsample.exe
|
||||
|
||||
test_for_selected_wxbuild:
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo The selected wxWidgets build is not available!
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo Please use the options prefixed with WX_ to select another wxWidgets build.
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
exit 1
|
||||
|
||||
ifeq ($(WX_SHARED),0)
|
||||
..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a: make_dir_propgrid_lib $(PROPGRID_LIB_OBJECTS)
|
||||
if exist $@ del $@
|
||||
ar rcu $@ $(PROPGRID_LIB_OBJECTS)
|
||||
ranlib $@
|
||||
endif
|
||||
|
||||
make_dir_propgrid_lib:
|
||||
if not exist ..\lib\gcc_$(____propgrid_5) mkdir ..\lib\gcc_$(____propgrid_5)
|
||||
|
||||
ifeq ($(WX_SHARED),1)
|
||||
..\lib\gcc_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll: make_dir_propgrid_dll $(PROPGRID_DLL_OBJECTS)
|
||||
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ $(PROPGRID_DLL_OBJECTS) -mthreads -L$(WX_DIR)$(WXLIBPATH) $(____propgrid_6) -L..$(WXLIBPATH) -Wl,--out-implib=..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a $(LDFLAGS) $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) -lwxtiff$(WX3RDPARTYLIBPOSTFIX) -lwxjpeg$(WX3RDPARTYLIBPOSTFIX) -lwxpng$(WX3RDPARTYLIBPOSTFIX) -lwxzlib$(WX3RDPARTYLIBPOSTFIX) -lwxregex$(WXLIBPOSTFIX) -lwxexpat$(WX3RDPARTYLIBPOSTFIX) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lodbc32
|
||||
endif
|
||||
|
||||
make_dir_propgrid_dll:
|
||||
if not exist ..\lib\gcc_$(____propgrid_5) mkdir ..\lib\gcc_$(____propgrid_5)
|
||||
|
||||
..\samples\propgridsample.exe: $(PROPGRIDSAMPLE_OBJECTS) make_sample_dir_propgridsample gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample_rc.o $(__propgrid_lib___depname)
|
||||
$(CXX) -o $@ $(PROPGRIDSAMPLE_OBJECTS) -mthreads -L$(WX_DIR)$(WXLIBPATH) $(____propgrid_6) -L..$(WXLIBPATH) -Wl,--subsystem,windows -mwindows $(LDFLAGS) ..\lib\gcc_$(____propgrid_5)\libwxcode_msw28$(WXLIBPOSTFIX)_propgrid.a $(__WXLIB_XRC_NAME_p) $(__WXLIB_HTML_NAME_p) $(__WXLIB_XML_NAME_p) $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) -lwxtiff$(WX3RDPARTYLIBPOSTFIX) -lwxjpeg$(WX3RDPARTYLIBPOSTFIX) -lwxpng$(WX3RDPARTYLIBPOSTFIX) -lwxzlib$(WX3RDPARTYLIBPOSTFIX) -lwxregex$(WXLIBPOSTFIX) -lwxexpat$(WX3RDPARTYLIBPOSTFIX) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lodbc32
|
||||
|
||||
make_sample_dir_propgridsample:
|
||||
if not exist ..\samples mkdir ..\samples
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.o: ../src/advprops.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.o: ../src/editors.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.o: ../src/extras.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.o: ../src/manager.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.o: ../src/odcombo.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.o: ../src/propgrid.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.o: ../src/props.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_LIB_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.o: ../src/advprops.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.o: ../src/editors.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.o: ../src/extras.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.o: ../src/manager.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.o: ../src/odcombo.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.o: ../src/propgrid.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.o: ../src/props.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRID_DLL_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.o: ../samples/minimal.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.o: ../samples/propgridsample.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.o: ../samples/sampleprops.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.o: ../samples/tests.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.o: ../src/xh_propgrid.cpp
|
||||
$(CXX) -c -o $@ $(PROPGRIDSAMPLE_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample_rc.o: ../samples/sample.rc
|
||||
windres --use-temp-file -i$< -o$@ --define HAVE_W32API_H $(____WX_SHARED_11_p_1) $(__WXUNICODE_DEFINE_p_4) $(__WXDEBUG_DEFINE_p_4) --define __WXMSW__ --include-dir $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) --include-dir $(WX_DIR)/include --include-dir ../include --include-dir ../samples
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
|
||||
SHELL := $(COMSPEC)
|
||||
|
||||
# Dependencies tracking:
|
||||
-include gccmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)/*.d
|
405
wxPG/propgrid/build/makefile.vc
Normal file
405
wxPG/propgrid/build/makefile.vc
Normal file
@ -0,0 +1,405 @@
|
||||
# =========================================================================
|
||||
# This makefile was generated by
|
||||
# Bakefile 0.2.6 (http://www.bakefile.org)
|
||||
# Do not modify, all changes will be overwritten!
|
||||
# =========================================================================
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# These are configurable options:
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
# C++ compiler
|
||||
CXX = cl
|
||||
|
||||
# Standard flags for C++
|
||||
CXXFLAGS =
|
||||
|
||||
# Standard preprocessor flags (common for CC and CXX)
|
||||
CPPFLAGS =
|
||||
|
||||
# Standard linker flags
|
||||
LDFLAGS =
|
||||
|
||||
# Use DLL build of wx library? [0,1]
|
||||
# 0 - Static
|
||||
# 1 - DLL
|
||||
WX_SHARED = 0
|
||||
|
||||
# Use Unicode build of wxWidgets? [0,1]
|
||||
# 0 - ANSI
|
||||
# 1 - Unicode
|
||||
WX_UNICODE = 0
|
||||
|
||||
# Use debug build of wxWidgets (define __WXDEBUG__)? [0,1]
|
||||
# 0 - Release
|
||||
# 1 - Debug
|
||||
WX_DEBUG = 1
|
||||
|
||||
# Use monolithic build of wxWidgets? [0,1]
|
||||
# 0 - Multilib
|
||||
# 1 - Monolithic
|
||||
WX_MONOLITHIC = 0
|
||||
|
||||
# The directory where wxWidgets library is installed
|
||||
WX_DIR = $(WXWIN)
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# Do not modify the rest of this file!
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
### Variables: ###
|
||||
|
||||
PROPGRID_LIB_CXXFLAGS = /MD$(____propgrid_5) /DWIN32 $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) /D__WXMSW__ \
|
||||
/I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) /I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_3) $(______propgrid) \
|
||||
/Fd..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.pdb \
|
||||
/W4 /I..\include /GR /EHsc $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_LIB_OBJECTS = \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.obj
|
||||
PROPGRID_DLL_CXXFLAGS = /MD$(____propgrid_5) /DWIN32 $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) /D__WXMSW__ \
|
||||
/I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) /I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_3) $(______propgrid) \
|
||||
/Fd..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.pdb \
|
||||
/W4 /I..\include /DWXMAKINGDLL_PROPGRID /GR /EHsc $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_DLL_OBJECTS = \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.obj
|
||||
PROPGRIDSAMPLE_CXXFLAGS = /MD$(____propgrid_5) /DWIN32 $(____WX_SHARED) \
|
||||
$(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) /D__WXMSW__ \
|
||||
/I$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) /I$(WX_DIR)\include \
|
||||
$(____propgrid) $(____propgrid_3) $(______propgrid) \
|
||||
/Fd..\samples\propgridsample.pdb /W4 /I..\include /D_WINDOWS /GR /EHsc \
|
||||
$(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRIDSAMPLE_OBJECTS = \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.obj \
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res
|
||||
|
||||
### Conditionally set variables: ###
|
||||
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
WX3RDPARTYLIBPOSTFIX = d
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
_BUILDDIR_SHARED_SUFFIX =
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
_BUILDDIR_SHARED_SUFFIX = _dll
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
__propgrid_lib___depname = \
|
||||
..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
__propgrid_dll___depname = \
|
||||
..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
____WX_SHARED_21_p_1 =
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
____WX_SHARED_21_p_1 = /d WXUSINGDLL
|
||||
!endif
|
||||
!if "$(WX_UNICODE)" == "1"
|
||||
__WXUNICODE_DEFINE_p_4 = /d _UNICODE
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
__WXDEBUG_DEFINE_p_4 = /d __WXDEBUG__
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
______propgridsample__DEBUGINFO_25_p_1 =
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
______propgridsample__DEBUGINFO_25_p_1 = /d _DEBUG
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28u_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28d_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XRC_NAME_p = wxmsw28ud_xrc.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28u_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28d_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_HTML_NAME_p = wxmsw28ud_html.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XML_NAME_p = wxbase28_xml.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XML_NAME_p = wxbase28u_xml.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_XML_NAME_p = wxbase28d_xml.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_XML_NAME_p = wxbase28ud_xml.lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
____WX_SHARED =
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
____WX_SHARED = /DWXUSINGDLL
|
||||
!endif
|
||||
!if "$(WX_UNICODE)" == "1"
|
||||
__WXUNICODE_DEFINE_p = /D_UNICODE
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
__WXDEBUG_DEFINE_p = /D__WXDEBUG__
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
____propgrid = /O2
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
____propgrid = /Od
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
____propgrid_3 =
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
____propgrid_3 = /Zi
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
____propgrid_4 =
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
____propgrid_4 = /DEBUG
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
______propgrid =
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
______propgrid = /D_DEBUG
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0"
|
||||
____propgrid_5 =
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1"
|
||||
____propgrid_5 = d
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
____propgrid_7 = lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
____propgrid_7 = dll
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28u_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28d_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_ADV_NAME_p = wxmsw28ud_adv.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28u_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28d_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_CORE_NAME_p = wxmsw28ud_core.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxbase28.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxbase28u.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28u.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxbase28d.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxbase28ud.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "0"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28d.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_MONOLITHIC)" == "1" && "$(WX_UNICODE)" == "1"
|
||||
__WXLIB_BASE_NAME_p = wxmsw28ud.lib
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "0" && "$(WX_UNICODE)" == "1"
|
||||
WXLIBPOSTFIX = u
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "0"
|
||||
WXLIBPOSTFIX = d
|
||||
!endif
|
||||
!if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "1"
|
||||
WXLIBPOSTFIX = ud
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
WXLIBPATH = \lib\vc_lib
|
||||
!endif
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
WXLIBPATH = \lib\vc_dll
|
||||
!endif
|
||||
|
||||
|
||||
all: vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX):
|
||||
-if not exist vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX) mkdir vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
|
||||
### Targets: ###
|
||||
|
||||
all: test_for_selected_wxbuild $(__propgrid_lib___depname) $(__propgrid_dll___depname) ..\samples\propgridsample.exe
|
||||
|
||||
clean:
|
||||
-if exist vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.obj del vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.obj
|
||||
-if exist vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.res del vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.res
|
||||
-if exist vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.pch del vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.pch
|
||||
-if exist ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib del ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
-if exist ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll del ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
-if exist ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ilk del ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.ilk
|
||||
-if exist ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.pdb del ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.pdb
|
||||
-if exist ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib del ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
-if exist ..\samples\propgridsample.exe del ..\samples\propgridsample.exe
|
||||
-if exist ..\samples\propgridsample.ilk del ..\samples\propgridsample.ilk
|
||||
-if exist ..\samples\propgridsample.pdb del ..\samples\propgridsample.pdb
|
||||
|
||||
test_for_selected_wxbuild:
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo The selected wxWidgets build is not available!
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo Please use the options prefixed with WX_ to select another wxWidgets build.
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
exit 1
|
||||
|
||||
!if "$(WX_SHARED)" == "0"
|
||||
..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib: make_dir_propgrid_lib $(PROPGRID_LIB_OBJECTS)
|
||||
if exist $@ del $@
|
||||
link /LIB /NOLOGO /OUT:$@ @<<
|
||||
$(PROPGRID_LIB_OBJECTS)
|
||||
<<
|
||||
!endif
|
||||
|
||||
make_dir_propgrid_lib:
|
||||
if not exist ..\lib\vc_$(____propgrid_7) mkdir ..\lib\vc_$(____propgrid_7)
|
||||
|
||||
!if "$(WX_SHARED)" == "1"
|
||||
..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll: make_dir_propgrid_dll $(PROPGRID_DLL_OBJECTS)
|
||||
link /DLL /NOLOGO /OUT:$@ /LIBPATH:$(WX_DIR)$(WXLIBPATH) $(____propgrid_4) /pdb:"..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.pdb" /LIBPATH:..$(WXLIBPATH) $(LDFLAGS) @<<
|
||||
$(PROPGRID_DLL_OBJECTS) $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) wxtiff$(WX3RDPARTYLIBPOSTFIX).lib wxjpeg$(WX3RDPARTYLIBPOSTFIX).lib wxpng$(WX3RDPARTYLIBPOSTFIX).lib wxzlib$(WX3RDPARTYLIBPOSTFIX).lib wxregex$(WXLIBPOSTFIX).lib wxexpat$(WX3RDPARTYLIBPOSTFIX).lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /IMPLIB:..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
<<
|
||||
!endif
|
||||
|
||||
make_dir_propgrid_dll:
|
||||
if not exist ..\lib\vc_$(____propgrid_7) mkdir ..\lib\vc_$(____propgrid_7)
|
||||
|
||||
..\samples\propgridsample.exe: $(PROPGRIDSAMPLE_OBJECTS) make_sample_dir_propgridsample vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res $(__propgrid_lib___depname)
|
||||
link /NOLOGO /OUT:$@ /LIBPATH:$(WX_DIR)$(WXLIBPATH) $(____propgrid_4) /pdb:"..\samples\propgridsample.pdb" /LIBPATH:..$(WXLIBPATH) /SUBSYSTEM:WINDOWS $(LDFLAGS) @<<
|
||||
$(PROPGRIDSAMPLE_OBJECTS) ..\lib\vc_$(____propgrid_7)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib $(__WXLIB_XRC_NAME_p) $(__WXLIB_HTML_NAME_p) $(__WXLIB_XML_NAME_p) $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) wxtiff$(WX3RDPARTYLIBPOSTFIX).lib wxjpeg$(WX3RDPARTYLIBPOSTFIX).lib wxpng$(WX3RDPARTYLIBPOSTFIX).lib wxzlib$(WX3RDPARTYLIBPOSTFIX).lib wxregex$(WXLIBPOSTFIX).lib wxexpat$(WX3RDPARTYLIBPOSTFIX).lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib
|
||||
<<
|
||||
|
||||
make_sample_dir_propgridsample:
|
||||
if not exist ..\samples mkdir ..\samples
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.obj: ..\src\advprops.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\advprops.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.obj: ..\src\editors.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\editors.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.obj: ..\src\extras.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\extras.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.obj: ..\src\manager.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\manager.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.obj: ..\src\odcombo.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\odcombo.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.obj: ..\src\propgrid.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\propgrid.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.obj: ..\src\props.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_LIB_CXXFLAGS) ..\src\props.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.obj: ..\src\advprops.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\advprops.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.obj: ..\src\editors.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\editors.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.obj: ..\src\extras.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\extras.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.obj: ..\src\manager.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\manager.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.obj: ..\src\odcombo.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\odcombo.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.obj: ..\src\propgrid.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\propgrid.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.obj: ..\src\props.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRID_DLL_CXXFLAGS) ..\src\props.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.obj: ..\samples\minimal.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\minimal.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.obj: ..\samples\propgridsample.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\propgridsample.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.obj: ..\samples\sampleprops.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\sampleprops.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.obj: ..\samples\tests.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\samples\tests.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.obj: ..\src\xh_propgrid.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDSAMPLE_CXXFLAGS) ..\src\xh_propgrid.cpp
|
||||
|
||||
vcmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res: ..\samples\sample.rc
|
||||
rc /fo$@ /d WIN32 $(____WX_SHARED_21_p_1) $(__WXUNICODE_DEFINE_p_4) $(__WXDEBUG_DEFINE_p_4) /d __WXMSW__ /i $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) /i $(WX_DIR)\include $(______propgridsample__DEBUGINFO_25_p_1) /i ..\include /d _WINDOWS /i ..\samples ..\samples\sample.rc
|
||||
|
537
wxPG/propgrid/build/makefile.wat
Normal file
537
wxPG/propgrid/build/makefile.wat
Normal file
@ -0,0 +1,537 @@
|
||||
# =========================================================================
|
||||
# This makefile was generated by
|
||||
# Bakefile 0.2.6 (http://www.bakefile.org)
|
||||
# Do not modify, all changes will be overwritten!
|
||||
# =========================================================================
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# These are configurable options:
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
# C++ compiler
|
||||
CXX = wpp386
|
||||
|
||||
# Standard flags for C++
|
||||
CXXFLAGS =
|
||||
|
||||
# Standard preprocessor flags (common for CC and CXX)
|
||||
CPPFLAGS =
|
||||
|
||||
# Standard linker flags
|
||||
LDFLAGS =
|
||||
|
||||
# Use DLL build of wx library? [0,1]
|
||||
# 0 - Static
|
||||
# 1 - DLL
|
||||
WX_SHARED = 0
|
||||
|
||||
# Use Unicode build of wxWidgets? [0,1]
|
||||
# 0 - ANSI
|
||||
# 1 - Unicode
|
||||
WX_UNICODE = 0
|
||||
|
||||
# Use debug build of wxWidgets (define __WXDEBUG__)? [0,1]
|
||||
# 0 - Release
|
||||
# 1 - Debug
|
||||
WX_DEBUG = 1
|
||||
|
||||
# Use monolithic build of wxWidgets? [0,1]
|
||||
# 0 - Multilib
|
||||
# 1 - Monolithic
|
||||
WX_MONOLITHIC = 0
|
||||
|
||||
# The directory where wxWidgets library is installed
|
||||
WX_DIR = $(%WXWIN)
|
||||
|
||||
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# Do not modify the rest of this file!
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
# Speed up compilation a bit:
|
||||
!ifdef __LOADDLL__
|
||||
! loaddll wcc wccd
|
||||
! loaddll wccaxp wccdaxp
|
||||
! loaddll wcc386 wccd386
|
||||
! loaddll wpp wppdi86
|
||||
! loaddll wppaxp wppdaxp
|
||||
! loaddll wpp386 wppd386
|
||||
! if $(__VERSION__) >= 1280
|
||||
! loaddll wlink wlinkd
|
||||
! else
|
||||
! loaddll wlink wlink
|
||||
! endif
|
||||
! loaddll wlib wlibd
|
||||
!endif
|
||||
|
||||
# We need these variables in some bakefile-made rules:
|
||||
WATCOM_CWD = $+ $(%cdrive):$(%cwd) $-
|
||||
|
||||
### Conditionally set variables: ###
|
||||
|
||||
WX3RDPARTYLIBPOSTFIX =
|
||||
!ifeq WX_DEBUG 1
|
||||
WX3RDPARTYLIBPOSTFIX = d
|
||||
!endif
|
||||
_BUILDDIR_SHARED_SUFFIX =
|
||||
!ifeq WX_SHARED 0
|
||||
_BUILDDIR_SHARED_SUFFIX =
|
||||
!endif
|
||||
!ifeq WX_SHARED 1
|
||||
_BUILDDIR_SHARED_SUFFIX = _dll
|
||||
!endif
|
||||
__propgrid_lib___depname =
|
||||
!ifeq WX_SHARED 0
|
||||
__propgrid_lib___depname = &
|
||||
..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
!endif
|
||||
__propgrid_dll___depname =
|
||||
!ifeq WX_SHARED 1
|
||||
__propgrid_dll___depname = &
|
||||
..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
!endif
|
||||
__WXLIB_XRC_NAME_p =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_XRC_NAME_p = wxmsw28_xrc.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_XRC_NAME_p = wxmsw28u_xrc.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_XRC_NAME_p = wxmsw28d_xrc.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_XRC_NAME_p = wxmsw28ud_xrc.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
__WXLIB_HTML_NAME_p =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_HTML_NAME_p = wxmsw28_html.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_HTML_NAME_p = wxmsw28u_html.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_HTML_NAME_p = wxmsw28d_html.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_HTML_NAME_p = wxmsw28ud_html.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
__WXLIB_XML_NAME_p =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_XML_NAME_p = wxbase28_xml.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_XML_NAME_p = wxbase28u_xml.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_XML_NAME_p = wxbase28d_xml.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_XML_NAME_p = wxbase28ud_xml.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
____propgrid =
|
||||
!ifeq WX_DEBUG 0
|
||||
____propgrid = -ot -ox
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
____propgrid = -od
|
||||
!endif
|
||||
____propgrid_2 =
|
||||
!ifeq WX_DEBUG 0
|
||||
____propgrid_2 = -d0
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
____propgrid_2 = -d2
|
||||
!endif
|
||||
____propgrid_3 =
|
||||
!ifeq WX_DEBUG 0
|
||||
____propgrid_3 =
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
____propgrid_3 = debug all
|
||||
!endif
|
||||
____propgrid_5 =
|
||||
!ifeq WX_SHARED 0
|
||||
____propgrid_5 = lib
|
||||
!endif
|
||||
!ifeq WX_SHARED 1
|
||||
____propgrid_5 = dll
|
||||
!endif
|
||||
__WXLIB_ADV_NAME_p =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_ADV_NAME_p = wxmsw28_adv.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_ADV_NAME_p = wxmsw28u_adv.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_ADV_NAME_p = wxmsw28d_adv.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_ADV_NAME_p = wxmsw28ud_adv.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
__WXLIB_CORE_NAME_p =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_CORE_NAME_p = wxmsw28_core.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_CORE_NAME_p = wxmsw28u_core.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_CORE_NAME_p = wxmsw28d_core.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_CORE_NAME_p = wxmsw28ud_core.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
__WXLIB_BASE_NAME_p =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_BASE_NAME_p = wxbase28.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_BASE_NAME_p = wxbase28u.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 1
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_BASE_NAME_p = wxmsw28.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_MONOLITHIC 1
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_BASE_NAME_p = wxmsw28u.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_BASE_NAME_p = wxbase28d.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 0
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_BASE_NAME_p = wxbase28ud.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 1
|
||||
!ifeq WX_UNICODE 0
|
||||
__WXLIB_BASE_NAME_p = wxmsw28d.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_MONOLITHIC 1
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXLIB_BASE_NAME_p = wxmsw28ud.lib
|
||||
!endif
|
||||
!endif
|
||||
!endif
|
||||
____WX_SHARED =
|
||||
!ifeq WX_SHARED 0
|
||||
____WX_SHARED =
|
||||
!endif
|
||||
!ifeq WX_SHARED 1
|
||||
____WX_SHARED = -dWXUSINGDLL
|
||||
!endif
|
||||
__WXUNICODE_DEFINE_p =
|
||||
!ifeq WX_UNICODE 1
|
||||
__WXUNICODE_DEFINE_p = -d_UNICODE
|
||||
!endif
|
||||
__WXDEBUG_DEFINE_p =
|
||||
!ifeq WX_DEBUG 1
|
||||
__WXDEBUG_DEFINE_p = -d__WXDEBUG__
|
||||
!endif
|
||||
WXLIBPOSTFIX =
|
||||
!ifeq WX_DEBUG 0
|
||||
!ifeq WX_UNICODE 1
|
||||
WXLIBPOSTFIX = u
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_UNICODE 0
|
||||
WXLIBPOSTFIX = d
|
||||
!endif
|
||||
!endif
|
||||
!ifeq WX_DEBUG 1
|
||||
!ifeq WX_UNICODE 1
|
||||
WXLIBPOSTFIX = ud
|
||||
!endif
|
||||
!endif
|
||||
WXLIBPATH =
|
||||
!ifeq WX_SHARED 0
|
||||
WXLIBPATH = \lib\wat_lib
|
||||
!endif
|
||||
!ifeq WX_SHARED 1
|
||||
WXLIBPATH = \lib\wat_dll
|
||||
!endif
|
||||
|
||||
### Variables: ###
|
||||
|
||||
PROPGRID_LIB_CXXFLAGS = $(____WX_SHARED) $(__WXUNICODE_DEFINE_p) &
|
||||
$(__WXDEBUG_DEFINE_p) -d__WXMSW__ &
|
||||
-i=$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -i=$(WX_DIR)\include &
|
||||
$(____propgrid) $(____propgrid_2) -wx -i=..\include $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_LIB_OBJECTS = &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.obj
|
||||
PROPGRID_DLL_CXXFLAGS = -bd $(____WX_SHARED) $(__WXUNICODE_DEFINE_p) &
|
||||
$(__WXDEBUG_DEFINE_p) -d__WXMSW__ &
|
||||
-i=$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -i=$(WX_DIR)\include &
|
||||
$(____propgrid) $(____propgrid_2) -wx -i=..\include -dWXMAKINGDLL_PROPGRID &
|
||||
$(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRID_DLL_OBJECTS = &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.obj
|
||||
PROPGRIDSAMPLE_CXXFLAGS = $(____WX_SHARED) $(__WXUNICODE_DEFINE_p) &
|
||||
$(__WXDEBUG_DEFINE_p) -d__WXMSW__ &
|
||||
-i=$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -i=$(WX_DIR)\include &
|
||||
$(____propgrid) $(____propgrid_2) -wx -i=..\include $(CPPFLAGS) $(CXXFLAGS)
|
||||
PROPGRIDSAMPLE_OBJECTS = &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.obj &
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.obj
|
||||
|
||||
|
||||
all : watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX) :
|
||||
-if not exist watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX) mkdir watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)
|
||||
|
||||
### Targets: ###
|
||||
|
||||
all : .SYMBOLIC test_for_selected_wxbuild $(__propgrid_lib___depname) $(__propgrid_dll___depname) ..\samples\propgridsample.exe
|
||||
|
||||
clean : .SYMBOLIC
|
||||
-if exist watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.obj del watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.obj
|
||||
-if exist watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.res del watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.res
|
||||
-if exist watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.lbc del watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.lbc
|
||||
-if exist watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.ilk del watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.ilk
|
||||
-if exist watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.pch del watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\*.pch
|
||||
-if exist ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib del ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
-if exist ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll del ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll
|
||||
-if exist ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib del ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib
|
||||
-if exist ..\samples\propgridsample.exe del ..\samples\propgridsample.exe
|
||||
|
||||
test_for_selected_wxbuild :
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo The selected wxWidgets build is not available!
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo Please use the options prefixed with WX_ to select another wxWidgets build.
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
echo ----------------------------------------------------------------------------
|
||||
@if not exist $(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX)\wx\setup.h \
|
||||
exit 1
|
||||
|
||||
!ifeq WX_SHARED 0
|
||||
..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib : make_dir_propgrid_lib $(PROPGRID_LIB_OBJECTS)
|
||||
@%create watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib.lbc
|
||||
@for %i in ($(PROPGRID_LIB_OBJECTS)) do @%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib.lbc +%i
|
||||
wlib -q -p4096 -n -b $^@ @watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib.lbc
|
||||
!endif
|
||||
|
||||
make_dir_propgrid_lib :
|
||||
if not exist ..\lib\wat_$(____propgrid_5) mkdir ..\lib\wat_$(____propgrid_5)
|
||||
|
||||
!ifeq WX_SHARED 1
|
||||
..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.dll : make_dir_propgrid_dll $(PROPGRID_DLL_OBJECTS)
|
||||
@%create watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc option quiet
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc name $^@
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc option caseexact
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc libpath $(WX_DIR)$(WXLIBPATH) $(____propgrid_3) libpath ..$(WXLIBPATH) $(LDFLAGS)
|
||||
@for %i in ($(PROPGRID_DLL_OBJECTS)) do @%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc file %i
|
||||
@for %i in ( $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) wxtiff$(WX3RDPARTYLIBPOSTFIX).lib wxjpeg$(WX3RDPARTYLIBPOSTFIX).lib wxpng$(WX3RDPARTYLIBPOSTFIX).lib wxzlib$(WX3RDPARTYLIBPOSTFIX).lib wxregex$(WXLIBPOSTFIX).lib wxexpat$(WX3RDPARTYLIBPOSTFIX).lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib) do @%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc library %i
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc system nt_dll
|
||||
wlink @watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll.lbc
|
||||
wlib -q -n -b ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib +$^@
|
||||
!endif
|
||||
|
||||
make_dir_propgrid_dll :
|
||||
if not exist ..\lib\wat_$(____propgrid_5) mkdir ..\lib\wat_$(____propgrid_5)
|
||||
|
||||
..\samples\propgridsample.exe : $(PROPGRIDSAMPLE_OBJECTS) make_sample_dir_propgridsample watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res $(__propgrid_lib___depname)
|
||||
@%create watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc option quiet
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc name $^@
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc option caseexact
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc libpath $(WX_DIR)$(WXLIBPATH) $(____propgrid_3) libpath ..$(WXLIBPATH) system nt_win ref '_WinMain@16' $(LDFLAGS)
|
||||
@for %i in ($(PROPGRIDSAMPLE_OBJECTS)) do @%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc file %i
|
||||
@for %i in ( ..\lib\wat_$(____propgrid_5)\wxcode_msw28$(WXLIBPOSTFIX)_propgrid.lib $(__WXLIB_XRC_NAME_p) $(__WXLIB_HTML_NAME_p) $(__WXLIB_XML_NAME_p) $(__WXLIB_ADV_NAME_p) $(__WXLIB_CORE_NAME_p) $(__WXLIB_BASE_NAME_p) wxtiff$(WX3RDPARTYLIBPOSTFIX).lib wxjpeg$(WX3RDPARTYLIBPOSTFIX).lib wxpng$(WX3RDPARTYLIBPOSTFIX).lib wxzlib$(WX3RDPARTYLIBPOSTFIX).lib wxregex$(WXLIBPOSTFIX).lib wxexpat$(WX3RDPARTYLIBPOSTFIX).lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib) do @%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc library %i
|
||||
@%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc option resource=watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res
|
||||
@for %i in () do @%append watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc option stack=%i
|
||||
wlink @watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample.lbc
|
||||
|
||||
make_sample_dir_propgridsample :
|
||||
if not exist ..\samples mkdir ..\samples
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_advprops.obj : .AUTODEPEND ..\src\advprops.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_editors.obj : .AUTODEPEND ..\src\editors.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_extras.obj : .AUTODEPEND ..\src\extras.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_manager.obj : .AUTODEPEND ..\src\manager.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_odcombo.obj : .AUTODEPEND ..\src\odcombo.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_propgrid.obj : .AUTODEPEND ..\src\propgrid.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_lib_props.obj : .AUTODEPEND ..\src\props.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_LIB_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_advprops.obj : .AUTODEPEND ..\src\advprops.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_editors.obj : .AUTODEPEND ..\src\editors.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_extras.obj : .AUTODEPEND ..\src\extras.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_manager.obj : .AUTODEPEND ..\src\manager.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_odcombo.obj : .AUTODEPEND ..\src\odcombo.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_propgrid.obj : .AUTODEPEND ..\src\propgrid.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgrid_dll_props.obj : .AUTODEPEND ..\src\props.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRID_DLL_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_minimal.obj : .AUTODEPEND ..\samples\minimal.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_propgridsample.obj : .AUTODEPEND ..\samples\propgridsample.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sampleprops.obj : .AUTODEPEND ..\samples\sampleprops.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_tests.obj : .AUTODEPEND ..\samples\tests.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_xh_propgrid.obj : .AUTODEPEND ..\src\xh_propgrid.cpp
|
||||
$(CXX) -bt=nt -zq -fo=$^@ $(PROPGRIDSAMPLE_CXXFLAGS) $<
|
||||
|
||||
watmsw$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX)\propgridsample_sample.res : .AUTODEPEND ..\samples\sample.rc
|
||||
wrc -q -ad -bt=nt -r -fo=$^@ $(____WX_SHARED) $(__WXUNICODE_DEFINE_p) $(__WXDEBUG_DEFINE_p) -d__WXMSW__ -i=$(WX_DIR)$(WXLIBPATH)\msw$(WXLIBPOSTFIX) -i=$(WX_DIR)\include -i=..\include -i=..\samples $<
|
||||
|
190
wxPG/propgrid/build/propgrid.bkl
Normal file
190
wxPG/propgrid/build/propgrid.bkl
Normal file
@ -0,0 +1,190 @@
|
||||
<?xml version="1.0" ?>
|
||||
|
||||
<!--
|
||||
=========================================================================
|
||||
How to customize this file for a particular component.
|
||||
|
||||
The wxCode presets are designed to accomodate a component that has:
|
||||
- source and header files that are meant to be compiled into 1 library
|
||||
(as a static lib when WX_SHARED=='0' and as a DLL when WX_SHARED=='1')
|
||||
- one or more sample programs that will make use of the library
|
||||
Nonetheless it can still be used for components with more than one library.
|
||||
|
||||
Step-by-step guide to adapt this bakefile to a component which builds as
|
||||
a library and has one or more samples as described above:
|
||||
|
||||
1.) Replace the contents of the "set-comp-name" tag with the name of your
|
||||
component, eg. wxCode/component/MYCOMPONENT_NAME.
|
||||
Example : for wxCode/components/wxpropgrid use just 'wxpropgrid' with no
|
||||
quotes.
|
||||
|
||||
2.) Replace the name of the lib to be generated MYCOMPONENT_NAME_lib and
|
||||
MYCOMPONENT_NAME_dll with the actual name of your component,
|
||||
eg. wxpropgrid_lib and wxpropgrid_dll.
|
||||
|
||||
3.) Adjust the MSVC6PRJ_MERGED_TARGETS variable with the same values
|
||||
you've set previously. eg. wxpropgrid=wxpropgrid_lib+wxpropgrid_dll
|
||||
|
||||
4.) Remove or add libs to link the library to. Use <wx-lib>name</wx-lib> for
|
||||
libraries from wxWidgets and they will be appropriately pre and postfixed
|
||||
based on the build settings (eg. debug, unicode, etc.).
|
||||
|
||||
Use <library>libID</library> for other libraries declared into this bakefile
|
||||
(e.g. your component's library: <library>wxpropgrid_lib</library>)
|
||||
|
||||
Finally, use <sys-lib>name</sys-lib> for other libraries coming from 3rd party
|
||||
packages. Note that shared libraries (<dll>) need to link to other libraries,
|
||||
but static libraries (<lib>) do not.
|
||||
|
||||
5.) Replace the MYSAMPLE_NAME with the name you want the compiled executable
|
||||
to have. Add or remove libraries and include paths as you did for the
|
||||
library.
|
||||
|
||||
6.) Periodically check to see if the wxCode bakefiles have been updated,
|
||||
including the template MYCOMP.bkl that this is derived from
|
||||
and regenerate your build files.
|
||||
|
||||
==========================================================================
|
||||
-->
|
||||
|
||||
<makefile>
|
||||
|
||||
<!-- the following line tells Bakefile that this component uses the wxCode presets
|
||||
(internally wxCode presets use in turn the wxWidgets presets)
|
||||
-->
|
||||
<include file="presets/wxcode.bkl"/>
|
||||
|
||||
<!-- sets the name of the folder which contains this component and thus
|
||||
should always be in lowercase, wxCode/component/MYCOMPONENT_NAME
|
||||
-->
|
||||
<set-comp-name>propgrid</set-comp-name>
|
||||
|
||||
|
||||
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
|
||||
<!-- Library settings -->
|
||||
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
|
||||
|
||||
<!-- NOTE: you won't need to specify a list of source and headers files
|
||||
for this component: wxcode.bkl (included above) will automatically
|
||||
look into the 'src' and 'include/wx' folders of your component to
|
||||
build such lists and set the COMP_SRC and COMP_HDR variables,
|
||||
which will then be used as sources / headers for the <lib> and <dll>
|
||||
targets below.
|
||||
|
||||
In case however you don't have the sources/headers in those
|
||||
folders, you'll want to 'manually' set the list. E.g. use
|
||||
|
||||
<set var="COMP_SRC">$(fileList('my_src_dir/*.cpp'))</set>
|
||||
<set var="COMP_HDR">$(fileList('my_header_dir/*.h'))</set>
|
||||
|
||||
if you have the sources in wxCode/components/yourcomp/my_src_dir
|
||||
and the headers in wxCode/components/yourcomp/my_header_dir
|
||||
|
||||
This is because the folders you reference are always referred to
|
||||
the root of your component and must always be relative paths.
|
||||
-->
|
||||
<set var="COMP_HDR">$(fileList('include/wx/propgrid/*.h'))</set>
|
||||
<set var="COMP_SRC">
|
||||
src/advprops.cpp
|
||||
src/editors.cpp
|
||||
src/extras.cpp
|
||||
src/manager.cpp
|
||||
src/odcombo.cpp
|
||||
src/propgrid.cpp
|
||||
src/props.cpp
|
||||
</set>
|
||||
|
||||
|
||||
<!-- NOT YET SUPPORTED!
|
||||
<gettext-catalogs id="locale">
|
||||
<srcdir>$(SRCDIR)/locale</srcdir>
|
||||
<catalog-name>propgrid</catalog-name>
|
||||
<linguas>fi it pl</linguas>
|
||||
<install-to>$(LOCALEDIR)</install-to>
|
||||
</gettext-catalogs>
|
||||
-->
|
||||
|
||||
<set var="SAMPLE_SRC">
|
||||
samples/minimal.cpp
|
||||
samples/propgridsample.cpp
|
||||
samples/sampleprops.cpp
|
||||
samples/tests.cpp
|
||||
src/xh_propgrid.cpp
|
||||
</set>
|
||||
<lib id="propgrid_lib" template="wxcode-lib" cond="WX_SHARED=='0'">
|
||||
<!-- here you can use any standard Bakefile tag. E.g. you may want to
|
||||
use <include> tag to add additional compiler include paths.
|
||||
-->
|
||||
</lib>
|
||||
<dll id="propgrid_dll" template="wxcode-dll" cond="WX_SHARED=='1'">
|
||||
<!-- Remove the libraries which are not required by your project.
|
||||
Note : the linking order may be important for static objects
|
||||
to be initialized correctly and even more important for
|
||||
some linkers like GNU's linker. -->
|
||||
<wx-lib>adv</wx-lib>
|
||||
<wx-lib>core</wx-lib>
|
||||
<wx-lib>base</wx-lib>
|
||||
</dll>
|
||||
|
||||
<!-- This makes the MSVC6 project files much nicer... -->
|
||||
<set var="MSVC6PRJ_MERGED_TARGETS">
|
||||
propgrid=propgrid_lib+propgrid_dll
|
||||
</set>
|
||||
|
||||
|
||||
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
|
||||
<!-- Sample(s) settings -->
|
||||
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
|
||||
|
||||
<!-- For wxCode samples, don't use a simple <exe> tag but rather the more
|
||||
specific <wxcode-sample> tag: -->
|
||||
|
||||
<wxcode-sample id="propgridsample">
|
||||
<!-- Inside a <wxcode-sample> tag you _must_ use the <dir> tag
|
||||
to tell Bakefile in which directory is placed this sample.
|
||||
|
||||
NOTE: the directory you reference must be relative to the root
|
||||
of your component. In the sample <dir> below we assume
|
||||
you have placed this sample's files in
|
||||
yourCompFolder/samples/sample1
|
||||
-->
|
||||
<dir>samples</dir>
|
||||
|
||||
<!-- if you use win32 resources for your sample and you are lazy and
|
||||
don't want to use the <win32-res>myresfile.rc</win32-res> tag,
|
||||
you can just write:
|
||||
-->
|
||||
<win32-res>samples/sample.rc</win32-res>
|
||||
|
||||
<!-- Remove the libraries which are not required by your project.
|
||||
Note : the linking order may by important for static objects
|
||||
to be initialized correctly. -->
|
||||
<library>propgrid_lib</library>
|
||||
<wx-lib>xrc</wx-lib>
|
||||
<wx-lib>html</wx-lib>
|
||||
<wx-lib>xml</wx-lib>
|
||||
<wx-lib>adv</wx-lib>
|
||||
<wx-lib>core</wx-lib>
|
||||
<wx-lib>base</wx-lib>
|
||||
</wxcode-sample>
|
||||
|
||||
|
||||
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
|
||||
<!-- Additional utilities -->
|
||||
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
|
||||
|
||||
<!-- Put here one or more of the following tags if you need them:
|
||||
|
||||
<make-tarball/> => for adding a "tarball" target on your Unix
|
||||
makefiles. Very very useful to make clean tarballs
|
||||
of your component at release-time.
|
||||
|
||||
<make-zip> => for adding a "zip" target on your Win makefiles.
|
||||
Very very useful to make clean zip archives
|
||||
of your component at release-time.
|
||||
|
||||
<make-docs> => for adding a "docs" target on your makefiles
|
||||
which runs "doxygen" in yourCompFolder/docs
|
||||
-->
|
||||
|
||||
</makefile>
|
31
wxPG/propgrid/build/propgrid.dsw
Normal file
31
wxPG/propgrid/build/propgrid.dsw
Normal file
@ -0,0 +1,31 @@
|
||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
Project: "propgrid"=propgrid_propgrid.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "propgridsample"=propgrid_propgridsample.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
Begin Project Dependency
|
||||
Project_Dep_Name propgrid
|
||||
End Project Dependency
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
528
wxPG/propgrid/build/propgrid_propgrid.dsp
Normal file
528
wxPG/propgrid/build/propgrid_propgrid.dsp
Normal file
@ -0,0 +1,528 @@
|
||||
# Microsoft Developer Studio Project File - Name="propgrid_propgrid" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=propgrid - Win32 Static ANSI Release Multilib
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "propgrid_propgrid.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "propgrid_propgrid.mak" CFG="propgrid - Win32 Static ANSI Release Multilib"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "propgrid - Win32 DLL Unicode Debug Monolithic" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL Unicode Debug Multilib" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL Unicode Release Monolithic" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL Unicode Release Multilib" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL ANSI Debug Monolithic" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL ANSI Debug Multilib" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL ANSI Release Monolithic" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 DLL ANSI Release Multilib" (based on "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "propgrid - Win32 Static Unicode Debug Monolithic" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static Unicode Debug Multilib" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static Unicode Release Monolithic" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static Unicode Release Multilib" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static ANSI Debug Monolithic" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static ANSI Debug Multilib" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static ANSI Release Monolithic" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE "propgrid - Win32 Static ANSI Release Multilib" (based on "Win32 (x86) Static Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "propgrid - Win32 DLL Unicode Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmswud_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmswud_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28ud_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28ud_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28ud_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28ud_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL Unicode Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmswud_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmswud_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28ud_adv.lib wxmsw28ud_core.lib wxbase28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28ud_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28ud_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28ud_adv.lib wxmsw28ud_core.lib wxbase28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28ud_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28ud_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL Unicode Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmswu_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmswu_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28u_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28u_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28u_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28u_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28u_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28u_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL Unicode Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmswu_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmswu_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28u_adv.lib wxmsw28u_core.lib wxbase28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28u_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28u_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28u_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28u_adv.lib wxmsw28u_core.lib wxbase28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28u_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28u_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28u_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL ANSI Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmswd_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmswd_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28d_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28d_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28d_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28d_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28d_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28d_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL ANSI Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmswd_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmswd_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_dll\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_DEBUG" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28d_adv.lib wxmsw28d_core.lib wxbase28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28d_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28d_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28d_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28d_adv.lib wxmsw28d_core.lib wxbase28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28d_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28d_propgrid.lib" /debug /pdb:"..\lib\vc_dll\wxcode_msw28d_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL ANSI Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmsw_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmsw_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 DLL ANSI Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_dll"
|
||||
# PROP BASE Intermediate_Dir "vcmsw_dll\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_dll"
|
||||
# PROP Intermediate_Dir "vcmsw_dll\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_dll\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_USRDLL" /D "DLL_EXPORTS" /D "WXUSINGDLL" /D "__WXMSW__" /D "WXMAKINGDLL_PROPGRID" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d WXMAKINGDLL_PROPGRID
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28_propgrid.pdb"
|
||||
# ADD LINK32 wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /dll /machine:i386 /out:"..\lib\vc_dll\wxcode_msw28_propgrid.dll" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /implib:"..\lib\vc_dll\wxcode_msw28_propgrid.lib" /pdb:"..\lib\vc_dll\wxcode_msw28_propgrid.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static Unicode Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmswud\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmswud\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28ud_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28ud_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static Unicode Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmswud\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmswud\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28ud_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28ud_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28ud_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static Unicode Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmswu\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmswu\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXMSW__" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXMSW__" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28u_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28u_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static Unicode Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmswu\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmswu\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXMSW__" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28u_propgrid.pdb /D "WIN32" /D "_LIB" /D "_UNICODE" /D "__WXMSW__" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28u_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28u_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static ANSI Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmswd\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmswd\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28d_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28d_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static ANSI Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmswd\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmswd\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\lib\vc_lib\wxcode_msw28d_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXDEBUG__" /D "__WXMSW__" /D "_DEBUG" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28d_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28d_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static ANSI Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmsw\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmsw\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXMSW__" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXMSW__" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28_propgrid.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgrid - Win32 Static ANSI Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\lib\vc_lib"
|
||||
# PROP BASE Intermediate_Dir "vcmsw\propgrid"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\lib\vc_lib"
|
||||
# PROP Intermediate_Dir "vcmsw\propgrid"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXMSW__" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\lib\vc_lib\wxcode_msw28_propgrid.pdb /D "WIN32" /D "_LIB" /D "__WXMSW__" /c
|
||||
# ADD BASE RSC /l 0x409
|
||||
# ADD RSC /l 0x409
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28_propgrid.lib"
|
||||
# ADD LIB32 /nologo /out:"..\lib\vc_lib\wxcode_msw28_propgrid.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "propgrid - Win32 DLL Unicode Debug Monolithic"
|
||||
# Name "propgrid - Win32 DLL Unicode Debug Multilib"
|
||||
# Name "propgrid - Win32 DLL Unicode Release Monolithic"
|
||||
# Name "propgrid - Win32 DLL Unicode Release Multilib"
|
||||
# Name "propgrid - Win32 DLL ANSI Debug Monolithic"
|
||||
# Name "propgrid - Win32 DLL ANSI Debug Multilib"
|
||||
# Name "propgrid - Win32 DLL ANSI Release Monolithic"
|
||||
# Name "propgrid - Win32 DLL ANSI Release Multilib"
|
||||
# Name "propgrid - Win32 Static Unicode Debug Monolithic"
|
||||
# Name "propgrid - Win32 Static Unicode Debug Multilib"
|
||||
# Name "propgrid - Win32 Static Unicode Release Monolithic"
|
||||
# Name "propgrid - Win32 Static Unicode Release Multilib"
|
||||
# Name "propgrid - Win32 Static ANSI Debug Monolithic"
|
||||
# Name "propgrid - Win32 Static ANSI Debug Multilib"
|
||||
# Name "propgrid - Win32 Static ANSI Release Monolithic"
|
||||
# Name "propgrid - Win32 Static ANSI Release Multilib"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter ""
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\advprops.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\editors.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\extras.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\manager.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\odcombo.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\propgrid.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\props.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter ""
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\advprops.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\editors.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\extras.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\manager.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\odcombo.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\pg_dox_mainpage.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\propdev.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\propgrid.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\props.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\include\wx\propgrid\xh_propgrid.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
|
869
wxPG/propgrid/build/propgrid_propgrid_vc10.vcxproj
Normal file
869
wxPG/propgrid/build/propgrid_propgrid_vc10.vcxproj
Normal file
@ -0,0 +1,869 @@
|
||||
<?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="DLL ANSI Debug Monolithic|Win32">
|
||||
<Configuration>DLL ANSI Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL ANSI Debug Multilib|Win32">
|
||||
<Configuration>DLL ANSI Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL ANSI Release Monolithic|Win32">
|
||||
<Configuration>DLL ANSI Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL ANSI Release Multilib|Win32">
|
||||
<Configuration>DLL ANSI Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Debug Monolithic|Win32">
|
||||
<Configuration>DLL Unicode Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Debug Multilib|Win32">
|
||||
<Configuration>DLL Unicode Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Release Monolithic|Win32">
|
||||
<Configuration>DLL Unicode Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Release Multilib|Win32">
|
||||
<Configuration>DLL Unicode Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Debug Monolithic|Win32">
|
||||
<Configuration>Static ANSI Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Debug Multilib|Win32">
|
||||
<Configuration>Static ANSI Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Release Monolithic|Win32">
|
||||
<Configuration>Static ANSI Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Release Multilib|Win32">
|
||||
<Configuration>Static ANSI Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Debug Monolithic|Win32">
|
||||
<Configuration>Static Unicode Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Debug Multilib|Win32">
|
||||
<Configuration>Static Unicode Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Release Monolithic|Win32">
|
||||
<Configuration>Static Unicode Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Release Multilib|Win32">
|
||||
<Configuration>Static Unicode Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>propgrid</ProjectName>
|
||||
<ProjectGuid>{ECA5FC4D-29CE-5030-9175-551834BF6CB0}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.21006.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">vcmsw\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">vcmsw\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">vcmswd\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">vcmswd\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">vcmswu\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">vcmswu\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">vcmswud\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">..\lib\vc_lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">vcmswud\propgrid\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">vcmsw_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">vcmsw_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">vcmswd_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">vcmswd_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">vcmswu_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">vcmswu_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">vcmswud_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">..\lib\vc_dll\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">vcmswud_dll\propgrid\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28d_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28d_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28d_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28d_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28u_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28u_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28u_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXMSW__;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28u_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28ud_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28ud_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_LIB;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_lib\wxcode_msw28ud_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Lib>
|
||||
<OutputFile>..\lib\vc_lib\wxcode_msw28ud_propgrid.lib</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Lib>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_lib\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\wx28X\lib\vc_dll\msw;..\..\..\wx28X\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXMSW__;WXMAKINGDLL_PROPGRID</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28_adv.lib;wxmsw28_core.lib;wxbase28.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregex.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\wx28X\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregex.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\wx28X\lib\vc_dll\mswd;..\..\..\wx28X\include;..\include</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28d_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28d_adv.lib;wxmsw28d_core.lib;wxbase28d.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexd.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28d_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28d_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>..\..\..\wx28X\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28d_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..\..\wx28X\lib\vc_dll\mswd;..\..\..\wx28X\include;../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28d_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28d.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexd.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28d_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28d_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28d_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28u_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28u_adv.lib;wxmsw28u_core.lib;wxbase28u.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregexu.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28u_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28u_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28u_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28u_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXMSW__;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28u.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregexu.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28u_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28u_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28u_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28ud_adv.lib;wxmsw28ud_core.lib;wxbase28ud.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexud.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28ud_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28ud_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_USRDLL;DLL_EXPORTS;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud_dll\propgrid\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_DEBUG;WXMAKINGDLL_PROPGRID;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>wxmsw28ud.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexud.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\lib\vc_dll\wxcode_msw28ud_propgrid.dll</OutputFile>
|
||||
<ImportLibrary>..\lib\vc_dll\wxcode_msw28ud_propgrid.lib</ImportLibrary>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\lib\vc_dll\wxcode_msw28ud_propgrid.pdb</ProgramDatabaseFile>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\lib\vc_dll\propgrid_propgrid.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\src\advprops.cpp" />
|
||||
<ClCompile Include="..\src\editors.cpp" />
|
||||
<ClCompile Include="..\src\extras.cpp" />
|
||||
<ClCompile Include="..\src\manager.cpp" />
|
||||
<ClCompile Include="..\src\odcombo.cpp" />
|
||||
<ClCompile Include="..\src\propgrid.cpp" />
|
||||
<ClCompile Include="..\src\props.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\include\wx\propgrid\advprops.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\editors.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\extras.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\manager.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\odcombo.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\pg_dox_mainpage.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\propdev.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\propgrid.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\props.h" />
|
||||
<ClInclude Include="..\include\wx\propgrid\xh_propgrid.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
68
wxPG/propgrid/build/propgrid_propgrid_vc10.vcxproj.filters
Normal file
68
wxPG/propgrid/build/propgrid_propgrid_vc10.vcxproj.filters
Normal file
@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\src\advprops.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\editors.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\extras.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\manager.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\odcombo.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\propgrid.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\props.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\include\wx\propgrid\advprops.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\editors.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\extras.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\manager.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\odcombo.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\pg_dox_mainpage.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\propdev.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\propgrid.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\props.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\include\wx\propgrid\xh_propgrid.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
3
wxPG/propgrid/build/propgrid_propgrid_vc10.vcxproj.user
Normal file
3
wxPG/propgrid/build/propgrid_propgrid_vc10.vcxproj.user
Normal file
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
</Project>
|
1030
wxPG/propgrid/build/propgrid_propgrid_vc7.vcproj
Normal file
1030
wxPG/propgrid/build/propgrid_propgrid_vc7.vcproj
Normal file
File diff suppressed because it is too large
Load Diff
2813
wxPG/propgrid/build/propgrid_propgrid_vc8.vcproj
Normal file
2813
wxPG/propgrid/build/propgrid_propgrid_vc8.vcproj
Normal file
File diff suppressed because it is too large
Load Diff
2797
wxPG/propgrid/build/propgrid_propgrid_vc9.vcproj
Normal file
2797
wxPG/propgrid/build/propgrid_propgrid_vc9.vcproj
Normal file
File diff suppressed because it is too large
Load Diff
508
wxPG/propgrid/build/propgrid_propgridsample.dsp
Normal file
508
wxPG/propgrid/build/propgrid_propgridsample.dsp
Normal file
@ -0,0 +1,508 @@
|
||||
# Microsoft Developer Studio Project File - Name="propgrid_propgridsample" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Application" 0x0101
|
||||
|
||||
CFG=propgridsample - Win32 Static ANSI Release Multilib
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "propgrid_propgridsample.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "propgrid_propgridsample.mak" CFG="propgridsample - Win32 Static ANSI Release Multilib"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "propgridsample - Win32 DLL Unicode Debug Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL Unicode Debug Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL Unicode Release Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL Unicode Release Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL ANSI Debug Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL ANSI Debug Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL ANSI Release Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 DLL ANSI Release Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static Unicode Debug Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static Unicode Debug Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static Unicode Release Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static Unicode Release Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static ANSI Debug Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static ANSI Debug Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static ANSI Release Monolithic" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "propgridsample - Win32 Static ANSI Release Multilib" (based on "Win32 (x86) Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "propgridsample - Win32 DLL Unicode Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswud_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswud_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28ud_propgrid.lib wxmsw28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28ud_propgrid.lib wxmsw28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL Unicode Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswud_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswud_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28ud_propgrid.lib wxmsw28ud_xrc.lib wxmsw28ud_html.lib wxbase28ud_xml.lib wxmsw28ud_adv.lib wxmsw28ud_core.lib wxbase28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28ud_propgrid.lib wxmsw28ud_xrc.lib wxmsw28ud_html.lib wxbase28ud_xml.lib wxmsw28ud_adv.lib wxmsw28ud_core.lib wxbase28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL Unicode Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswu_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswu_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28u_propgrid.lib wxmsw28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28u_propgrid.lib wxmsw28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL Unicode Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswu_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswu_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28u_propgrid.lib wxmsw28u_xrc.lib wxmsw28u_html.lib wxbase28u_xml.lib wxmsw28u_adv.lib wxmsw28u_core.lib wxbase28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28u_propgrid.lib wxmsw28u_xrc.lib wxmsw28u_html.lib wxbase28u_xml.lib wxmsw28u_adv.lib wxmsw28u_core.lib wxbase28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL ANSI Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswd_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswd_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28d_propgrid.lib wxmsw28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28d_propgrid.lib wxmsw28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL ANSI Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswd_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswd_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_dll\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28d_propgrid.lib wxmsw28d_xrc.lib wxmsw28d_html.lib wxbase28d_xml.lib wxmsw28d_adv.lib wxmsw28d_core.lib wxbase28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28d_propgrid.lib wxmsw28d_xrc.lib wxmsw28d_html.lib wxbase28d_xml.lib wxmsw28d_adv.lib wxmsw28d_core.lib wxbase28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL ANSI Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmsw_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmsw_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28_propgrid.lib wxmsw28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28_propgrid.lib wxmsw28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 DLL ANSI Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmsw_dll\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmsw_dll\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_dll\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "WXUSINGDLL" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "WXUSINGDLL" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_dll\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_dll\wxcode_msw28_propgrid.lib wxmsw28_xrc.lib wxmsw28_html.lib wxbase28_xml.lib wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_dll\wxcode_msw28_propgrid.lib wxmsw28_xrc.lib wxmsw28_html.lib wxbase28_xml.lib wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_dll" /libpath:"..\lib\vc_dll" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static Unicode Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswud\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswud\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28ud_propgrid.lib wxmsw28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28ud_propgrid.lib wxmsw28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static Unicode Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswud\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswud\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswud" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "_UNICODE" /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswud" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28ud_propgrid.lib wxmsw28ud_xrc.lib wxmsw28ud_html.lib wxbase28ud_xml.lib wxmsw28ud_adv.lib wxmsw28ud_core.lib wxbase28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28ud_propgrid.lib wxmsw28ud_xrc.lib wxmsw28ud_html.lib wxbase28ud_xml.lib wxmsw28ud_adv.lib wxmsw28ud_core.lib wxbase28ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static Unicode Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswu\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswu\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28u_propgrid.lib wxmsw28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28u_propgrid.lib wxmsw28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static Unicode Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswu\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswu\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswu" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "_UNICODE" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "_UNICODE" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswu" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28u_propgrid.lib wxmsw28u_xrc.lib wxmsw28u_html.lib wxbase28u_xml.lib wxmsw28u_adv.lib wxmsw28u_core.lib wxbase28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28u_propgrid.lib wxmsw28u_xrc.lib wxmsw28u_html.lib wxbase28u_xml.lib wxmsw28u_adv.lib wxmsw28u_core.lib wxbase28u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static ANSI Debug Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswd\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswd\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28d_propgrid.lib wxmsw28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28d_propgrid.lib wxmsw28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static ANSI Debug Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmswd\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmswd\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD CPP /nologo /FD /MDd /GR /EHsc /I "$(WXWIN)\lib\vc_lib\mswd" /I "$(WXWIN)\include" /Od /Gm /W4 /I "..\include" /Zi /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "__WXDEBUG__" /D "__WXMSW__" /D "_WINDOWS" /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
# ADD RSC /l 0x409 /d "__WXDEBUG__" /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\mswd" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i "..\samples" /d _DEBUG
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28d_propgrid.lib wxmsw28d_xrc.lib wxmsw28d_html.lib wxbase28d_xml.lib wxmsw28d_adv.lib wxmsw28d_core.lib wxbase28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28d_propgrid.lib wxmsw28d_xrc.lib wxmsw28d_html.lib wxbase28d_xml.lib wxmsw28d_adv.lib wxmsw28d_core.lib wxbase28d.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexd.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /debug /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static ANSI Release Monolithic"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmsw\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmsw\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28_propgrid.lib wxmsw28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28_propgrid.lib wxmsw28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ELSEIF "$(CFG)" == "propgridsample - Win32 Static ANSI Release Multilib"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "..\samples"
|
||||
# PROP BASE Intermediate_Dir "vcmsw\propgridsample"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "..\samples"
|
||||
# PROP Intermediate_Dir "vcmsw\propgridsample"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD CPP /nologo /FD /MD /GR /EHsc /I "$(WXWIN)\lib\vc_lib\msw" /I "$(WXWIN)\include" /O2 /W4 /I "..\include" /Fd..\samples\propgridsample.pdb /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /c
|
||||
# ADD BASE MTL /nologo /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "WIN32" /D "__WXMSW__" /D "_WINDOWS" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
# ADD RSC /l 0x409 /d "__WXMSW__" /i "$(WXWIN)\lib\vc_lib\msw" /i "$(WXWIN)\include" /i "..\include" /d "_WINDOWS" /i ..\samples
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 ..\lib\vc_lib\wxcode_msw28_propgrid.lib wxmsw28_xrc.lib wxmsw28_html.lib wxbase28_xml.lib wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
# ADD LINK32 ..\lib\vc_lib\wxcode_msw28_propgrid.lib wxmsw28_xrc.lib wxmsw28_html.lib wxbase28_xml.lib wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.lib oleacc.lib /nologo /machine:i386 /out:"..\samples\propgridsample.exe" /libpath:"$(WXWIN)\lib\vc_lib" /libpath:"..\lib\vc_lib" /subsystem:windows /pdb:"..\samples\propgridsample.pdb"
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "propgridsample - Win32 DLL Unicode Debug Monolithic"
|
||||
# Name "propgridsample - Win32 DLL Unicode Debug Multilib"
|
||||
# Name "propgridsample - Win32 DLL Unicode Release Monolithic"
|
||||
# Name "propgridsample - Win32 DLL Unicode Release Multilib"
|
||||
# Name "propgridsample - Win32 DLL ANSI Debug Monolithic"
|
||||
# Name "propgridsample - Win32 DLL ANSI Debug Multilib"
|
||||
# Name "propgridsample - Win32 DLL ANSI Release Monolithic"
|
||||
# Name "propgridsample - Win32 DLL ANSI Release Multilib"
|
||||
# Name "propgridsample - Win32 Static Unicode Debug Monolithic"
|
||||
# Name "propgridsample - Win32 Static Unicode Debug Multilib"
|
||||
# Name "propgridsample - Win32 Static Unicode Release Monolithic"
|
||||
# Name "propgridsample - Win32 Static Unicode Release Multilib"
|
||||
# Name "propgridsample - Win32 Static ANSI Debug Monolithic"
|
||||
# Name "propgridsample - Win32 Static ANSI Debug Multilib"
|
||||
# Name "propgridsample - Win32 Static ANSI Release Monolithic"
|
||||
# Name "propgridsample - Win32 Static ANSI Release Multilib"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter ""
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\minimal.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\propgridsample.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\sample.rc
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\sampleprops.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\tests.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\src\xh_propgrid.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter ""
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\propgridsample.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\samples\sampleprops.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
|
47
wxPG/propgrid/build/propgrid_propgridsample.vcxproj.filters
Normal file
47
wxPG/propgrid/build/propgrid_propgridsample.vcxproj.filters
Normal file
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\samples\minimal.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\samples\propgridsample.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\samples\sampleprops.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\samples\tests.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\xh_propgrid.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\samples\propgridsample.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\samples\sampleprops.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="..\samples\sample.rc">
|
||||
<Filter>Resource Files</Filter>
|
||||
</ResourceCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
3
wxPG/propgrid/build/propgrid_propgridsample.vcxproj.user
Normal file
3
wxPG/propgrid/build/propgrid_propgridsample.vcxproj.user
Normal file
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
</Project>
|
935
wxPG/propgrid/build/propgrid_propgridsample_vc10.vcxproj
Normal file
935
wxPG/propgrid/build/propgrid_propgridsample_vc10.vcxproj
Normal file
@ -0,0 +1,935 @@
|
||||
<?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="DLL ANSI Debug Monolithic|Win32">
|
||||
<Configuration>DLL ANSI Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL ANSI Debug Multilib|Win32">
|
||||
<Configuration>DLL ANSI Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL ANSI Release Monolithic|Win32">
|
||||
<Configuration>DLL ANSI Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL ANSI Release Multilib|Win32">
|
||||
<Configuration>DLL ANSI Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Debug Monolithic|Win32">
|
||||
<Configuration>DLL Unicode Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Debug Multilib|Win32">
|
||||
<Configuration>DLL Unicode Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Release Monolithic|Win32">
|
||||
<Configuration>DLL Unicode Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="DLL Unicode Release Multilib|Win32">
|
||||
<Configuration>DLL Unicode Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Debug Monolithic|Win32">
|
||||
<Configuration>Static ANSI Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Debug Multilib|Win32">
|
||||
<Configuration>Static ANSI Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Release Monolithic|Win32">
|
||||
<Configuration>Static ANSI Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static ANSI Release Multilib|Win32">
|
||||
<Configuration>Static ANSI Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Debug Monolithic|Win32">
|
||||
<Configuration>Static Unicode Debug Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Debug Multilib|Win32">
|
||||
<Configuration>Static Unicode Debug Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Release Monolithic|Win32">
|
||||
<Configuration>Static Unicode Release Monolithic</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Static Unicode Release Multilib|Win32">
|
||||
<Configuration>Static Unicode Release Multilib</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>propgridsample</ProjectName>
|
||||
<ProjectGuid>{3E5E89F7-6420-500C-9277-91A5DBB31651}</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.21006.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">vcmsw\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">vcmsw\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">vcmswd\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">vcmswd\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">vcmswu\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">vcmswu\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">vcmswud\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">vcmswud\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">vcmsw_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">vcmsw_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">vcmswd_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">vcmswd_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">vcmswu_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">vcmswu_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">false</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">vcmswud_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">..\samples\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">vcmswud_dll\propgridsample\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28_propgrid.lib;wxmsw28_xrc.lib;wxmsw28_html.lib;wxbase28_xml.lib;wxmsw28_adv.lib;wxmsw28_core.lib;wxbase28.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregex.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\msw;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28_propgrid.lib;wxmsw28.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregex.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28d_propgrid.lib;wxmsw28d_xrc.lib;wxmsw28d_html.lib;wxbase28d_xml.lib;wxmsw28d_adv.lib;wxmsw28d_core.lib;wxbase28d.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexd.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static ANSI Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswd;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28d_propgrid.lib;wxmsw28d.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexd.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28u_propgrid.lib;wxmsw28u_xrc.lib;wxmsw28u_html.lib;wxbase28u_xml.lib;wxmsw28u_adv.lib;wxmsw28u_core.lib;wxbase28u.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregexu.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswu;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28u_propgrid.lib;wxmsw28u.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregexu.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28ud_propgrid.lib;wxmsw28ud_xrc.lib;wxmsw28ud_html.lib;wxbase28ud_xml.lib;wxmsw28ud_adv.lib;wxmsw28ud_core.lib;wxbase28ud.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexud.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Unicode Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_lib\mswud;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_lib\wxcode_msw28ud_propgrid.lib;wxmsw28ud.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexud.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_lib;..\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28_propgrid.lib;wxmsw28_xrc.lib;wxmsw28_html.lib;wxbase28_xml.lib;wxmsw28_adv.lib;wxmsw28_core.lib;wxbase28.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregex.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmsw_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\msw;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28_propgrid.lib;wxmsw28.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregex.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28d_propgrid.lib;wxmsw28d_xrc.lib;wxmsw28d_html.lib;wxbase28d_xml.lib;wxmsw28d_adv.lib;wxmsw28d_core.lib;wxbase28d.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexd.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL ANSI Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswd_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswd;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28d_propgrid.lib;wxmsw28d.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexd.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28u_propgrid.lib;wxmsw28u_xrc.lib;wxmsw28u_html.lib;wxbase28u_xml.lib;wxmsw28u_adv.lib;wxmsw28u_core.lib;wxbase28u.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregexu.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Release Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswu_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>
|
||||
</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXMSW__;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswu;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28u_propgrid.lib;wxmsw28u.lib;wxtiff.lib;wxjpeg.lib;wxpng.lib;wxzlib.lib;wxregexu.lib;wxexpat.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Multilib|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28ud_propgrid.lib;wxmsw28ud_xrc.lib;wxmsw28ud_html.lib;wxbase28ud_xml.lib;wxmsw28ud_adv.lib;wxmsw28ud_core.lib;wxbase28ud.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexud.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Unicode Debug Monolithic|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<ExceptionHandling>Sync</ExceptionHandling>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<ObjectFileName>vcmswud_dll\propgridsample\</ObjectFileName>
|
||||
<ProgramDataBaseFileName>..\samples\propgridsample.pdb</ProgramDataBaseFileName>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WXUSINGDLL;_UNICODE;__WXDEBUG__;__WXMSW__;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>0x0409</Culture>
|
||||
<AdditionalIncludeDirectories>$(WXWIN)\lib\vc_dll\mswud;$(WXWIN)\include;..\include;..\samples;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalDependencies>..\lib\vc_dll\wxcode_msw28ud_propgrid.lib;wxmsw28ud.lib;wxtiffd.lib;wxjpegd.lib;wxpngd.lib;wxzlibd.lib;wxregexud.lib;wxexpatd.lib;kernel32.lib;user32.lib;gdi32.lib;comdlg32.lib;winspool.lib;winmm.lib;shell32.lib;comctl32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;advapi32.lib;wsock32.lib;odbc32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>..\samples\propgridsample.exe</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<AdditionalLibraryDirectories>$(WXWIN)\lib\vc_dll;..\lib\vc_dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateManifest>true</GenerateManifest>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ProgramDatabaseFile>..\samples\propgridsample.pdb</ProgramDatabaseFile>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
<Bscmake>
|
||||
<OutputFile>..\samples\propgrid_propgridsample.bsc</OutputFile>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\samples\minimal.cpp" />
|
||||
<ClCompile Include="..\samples\propgridsample.cpp" />
|
||||
<ClCompile Include="..\samples\sampleprops.cpp" />
|
||||
<ClCompile Include="..\samples\tests.cpp" />
|
||||
<ClCompile Include="..\src\xh_propgrid.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\samples\propgridsample.h" />
|
||||
<ClInclude Include="..\samples\sampleprops.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="..\samples\sample.rc" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="propgrid_propgrid.vcxproj">
|
||||
<Project>{eca5fc4d-29ce-5030-9175-551834bf6cb0}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
</Project>
|
1068
wxPG/propgrid/build/propgrid_propgridsample_vc7.vcproj
Normal file
1068
wxPG/propgrid/build/propgrid_propgridsample_vc7.vcproj
Normal file
File diff suppressed because it is too large
Load Diff
3111
wxPG/propgrid/build/propgrid_propgridsample_vc8.vcproj
Normal file
3111
wxPG/propgrid/build/propgrid_propgridsample_vc8.vcproj
Normal file
File diff suppressed because it is too large
Load Diff
2999
wxPG/propgrid/build/propgrid_propgridsample_vc9.vcproj
Normal file
2999
wxPG/propgrid/build/propgrid_propgridsample_vc9.vcproj
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wxPG/propgrid/build/propgrid_vc10.sdf
Normal file
BIN
wxPG/propgrid/build/propgrid_vc10.sdf
Normal file
Binary file not shown.
95
wxPG/propgrid/build/propgrid_vc10.sln
Normal file
95
wxPG/propgrid/build/propgrid_vc10.sln
Normal file
@ -0,0 +1,95 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual C++ Express 2010
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgrid", "propgrid_propgrid_vc10.vcxproj", "{ECA5FC4D-29CE-5030-9175-551834BF6CB0}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgridsample", "propgrid_propgridsample_vc10.vcxproj", "{3E5E89F7-6420-500C-9277-91A5DBB31651}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
DLL ANSI Debug Monolithic|Win32 = DLL ANSI Debug Monolithic|Win32
|
||||
DLL ANSI Debug Multilib|Win32 = DLL ANSI Debug Multilib|Win32
|
||||
DLL ANSI Release Monolithic|Win32 = DLL ANSI Release Monolithic|Win32
|
||||
DLL ANSI Release Multilib|Win32 = DLL ANSI Release Multilib|Win32
|
||||
DLL Unicode Debug Monolithic|Win32 = DLL Unicode Debug Monolithic|Win32
|
||||
DLL Unicode Debug Multilib|Win32 = DLL Unicode Debug Multilib|Win32
|
||||
DLL Unicode Release Monolithic|Win32 = DLL Unicode Release Monolithic|Win32
|
||||
DLL Unicode Release Multilib|Win32 = DLL Unicode Release Multilib|Win32
|
||||
Static ANSI Debug Monolithic|Win32 = Static ANSI Debug Monolithic|Win32
|
||||
Static ANSI Debug Multilib|Win32 = Static ANSI Debug Multilib|Win32
|
||||
Static ANSI Release Monolithic|Win32 = Static ANSI Release Monolithic|Win32
|
||||
Static ANSI Release Multilib|Win32 = Static ANSI Release Multilib|Win32
|
||||
Static Unicode Debug Monolithic|Win32 = Static Unicode Debug Monolithic|Win32
|
||||
Static Unicode Debug Multilib|Win32 = Static Unicode Debug Multilib|Win32
|
||||
Static Unicode Release Monolithic|Win32 = Static Unicode Release Monolithic|Win32
|
||||
Static Unicode Release Multilib|Win32 = Static Unicode Release Multilib|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
BIN
wxPG/propgrid/build/propgrid_vc10.suo
Normal file
BIN
wxPG/propgrid/build/propgrid_vc10.suo
Normal file
Binary file not shown.
98
wxPG/propgrid/build/propgrid_vc7.sln
Normal file
98
wxPG/propgrid/build/propgrid_vc7.sln
Normal file
@ -0,0 +1,98 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgrid", "propgrid_propgrid_vc7.vcproj", "{ECA5FC4D-29CE-5030-9175-551834BF6CB0}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgridsample", "propgrid_propgridsample_vc7.vcproj", "{3E5E89F7-6420-500C-9277-91A5DBB31651}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0} = {ECA5FC4D-29CE-5030-9175-551834BF6CB0}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Static ANSI Release Multilib|Win32 = Static ANSI Release Multilib|Win32
|
||||
Static ANSI Release Monolithic|Win32 = Static ANSI Release Monolithic|Win32
|
||||
Static ANSI Debug Multilib|Win32 = Static ANSI Debug Multilib|Win32
|
||||
Static ANSI Debug Monolithic|Win32 = Static ANSI Debug Monolithic|Win32
|
||||
Static Unicode Release Multilib|Win32 = Static Unicode Release Multilib|Win32
|
||||
Static Unicode Release Monolithic|Win32 = Static Unicode Release Monolithic|Win32
|
||||
Static Unicode Debug Multilib|Win32 = Static Unicode Debug Multilib|Win32
|
||||
Static Unicode Debug Monolithic|Win32 = Static Unicode Debug Monolithic|Win32
|
||||
DLL ANSI Release Multilib|Win32 = DLL ANSI Release Multilib|Win32
|
||||
DLL ANSI Release Monolithic|Win32 = DLL ANSI Release Monolithic|Win32
|
||||
DLL ANSI Debug Multilib|Win32 = DLL ANSI Debug Multilib|Win32
|
||||
DLL ANSI Debug Monolithic|Win32 = DLL ANSI Debug Monolithic|Win32
|
||||
DLL Unicode Release Multilib|Win32 = DLL Unicode Release Multilib|Win32
|
||||
DLL Unicode Release Monolithic|Win32 = DLL Unicode Release Monolithic|Win32
|
||||
DLL Unicode Debug Multilib|Win32 = DLL Unicode Debug Multilib|Win32
|
||||
DLL Unicode Debug Monolithic|Win32 = DLL Unicode Debug Monolithic|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
179
wxPG/propgrid/build/propgrid_vc8.sln
Normal file
179
wxPG/propgrid/build/propgrid_vc8.sln
Normal file
@ -0,0 +1,179 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual Studio 2005
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgrid", "propgrid_propgrid_vc8.vcproj", "{ECA5FC4D-29CE-5030-9175-551834BF6CB0}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgridsample", "propgrid_propgridsample_vc8.vcproj", "{3E5E89F7-6420-500C-9277-91A5DBB31651}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0} = {ECA5FC4D-29CE-5030-9175-551834BF6CB0}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Static ANSI Release Multilib|Win32 = Static ANSI Release Multilib|Win32
|
||||
Static ANSI Release Multilib|x64 = Static ANSI Release Multilib|x64
|
||||
Static ANSI Release Monolithic|Win32 = Static ANSI Release Monolithic|Win32
|
||||
Static ANSI Release Monolithic|x64 = Static ANSI Release Monolithic|x64
|
||||
Static ANSI Debug Multilib|Win32 = Static ANSI Debug Multilib|Win32
|
||||
Static ANSI Debug Multilib|x64 = Static ANSI Debug Multilib|x64
|
||||
Static ANSI Debug Monolithic|Win32 = Static ANSI Debug Monolithic|Win32
|
||||
Static ANSI Debug Monolithic|x64 = Static ANSI Debug Monolithic|x64
|
||||
Static Unicode Release Multilib|Win32 = Static Unicode Release Multilib|Win32
|
||||
Static Unicode Release Multilib|x64 = Static Unicode Release Multilib|x64
|
||||
Static Unicode Release Monolithic|Win32 = Static Unicode Release Monolithic|Win32
|
||||
Static Unicode Release Monolithic|x64 = Static Unicode Release Monolithic|x64
|
||||
Static Unicode Debug Multilib|Win32 = Static Unicode Debug Multilib|Win32
|
||||
Static Unicode Debug Multilib|x64 = Static Unicode Debug Multilib|x64
|
||||
Static Unicode Debug Monolithic|Win32 = Static Unicode Debug Monolithic|Win32
|
||||
Static Unicode Debug Monolithic|x64 = Static Unicode Debug Monolithic|x64
|
||||
DLL ANSI Release Multilib|Win32 = DLL ANSI Release Multilib|Win32
|
||||
DLL ANSI Release Multilib|x64 = DLL ANSI Release Multilib|x64
|
||||
DLL ANSI Release Monolithic|Win32 = DLL ANSI Release Monolithic|Win32
|
||||
DLL ANSI Release Monolithic|x64 = DLL ANSI Release Monolithic|x64
|
||||
DLL ANSI Debug Multilib|Win32 = DLL ANSI Debug Multilib|Win32
|
||||
DLL ANSI Debug Multilib|x64 = DLL ANSI Debug Multilib|x64
|
||||
DLL ANSI Debug Monolithic|Win32 = DLL ANSI Debug Monolithic|Win32
|
||||
DLL ANSI Debug Monolithic|x64 = DLL ANSI Debug Monolithic|x64
|
||||
DLL Unicode Release Multilib|Win32 = DLL Unicode Release Multilib|Win32
|
||||
DLL Unicode Release Multilib|x64 = DLL Unicode Release Multilib|x64
|
||||
DLL Unicode Release Monolithic|Win32 = DLL Unicode Release Monolithic|Win32
|
||||
DLL Unicode Release Monolithic|x64 = DLL Unicode Release Monolithic|x64
|
||||
DLL Unicode Debug Multilib|Win32 = DLL Unicode Debug Multilib|Win32
|
||||
DLL Unicode Debug Multilib|x64 = DLL Unicode Debug Multilib|x64
|
||||
DLL Unicode Debug Monolithic|Win32 = DLL Unicode Debug Monolithic|Win32
|
||||
DLL Unicode Debug Monolithic|x64 = DLL Unicode Debug Monolithic|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|x64.ActiveCfg = Static ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|x64.Build.0 = Static ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|x64.ActiveCfg = Static ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|x64.Build.0 = Static ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|x64.ActiveCfg = Static ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|x64.Build.0 = Static ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|x64.ActiveCfg = Static ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|x64.Build.0 = Static ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|x64.ActiveCfg = Static Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|x64.Build.0 = Static Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|x64.ActiveCfg = Static Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|x64.Build.0 = Static Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|x64.ActiveCfg = Static Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|x64.Build.0 = Static Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|x64.ActiveCfg = Static Unicode Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|x64.Build.0 = Static Unicode Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|x64.ActiveCfg = DLL ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|x64.Build.0 = DLL ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|x64.ActiveCfg = DLL ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|x64.Build.0 = DLL ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|x64.ActiveCfg = DLL ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|x64.Build.0 = DLL ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|x64.ActiveCfg = DLL ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|x64.Build.0 = DLL ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|x64.ActiveCfg = DLL Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|x64.Build.0 = DLL Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|x64.ActiveCfg = DLL Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|x64.Build.0 = DLL Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|x64.ActiveCfg = DLL Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|x64.Build.0 = DLL Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|x64.ActiveCfg = DLL Unicode Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|x64.Build.0 = DLL Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|x64.ActiveCfg = Static ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|x64.Build.0 = Static ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|x64.ActiveCfg = Static ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|x64.Build.0 = Static ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|x64.ActiveCfg = Static ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|x64.Build.0 = Static ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|x64.ActiveCfg = Static ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|x64.Build.0 = Static ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|x64.ActiveCfg = Static Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|x64.Build.0 = Static Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|x64.ActiveCfg = Static Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|x64.Build.0 = Static Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|x64.ActiveCfg = Static Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|x64.Build.0 = Static Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|x64.ActiveCfg = Static Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|x64.Build.0 = Static Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|x64.ActiveCfg = DLL ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|x64.Build.0 = DLL ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|x64.ActiveCfg = DLL ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|x64.Build.0 = DLL ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|x64.ActiveCfg = DLL ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|x64.Build.0 = DLL ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|x64.ActiveCfg = DLL ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|x64.Build.0 = DLL ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|x64.ActiveCfg = DLL Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|x64.Build.0 = DLL Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|x64.ActiveCfg = DLL Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|x64.Build.0 = DLL Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|x64.ActiveCfg = DLL Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|x64.Build.0 = DLL Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|x64.ActiveCfg = DLL Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|x64.Build.0 = DLL Unicode Debug Monolithic|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
179
wxPG/propgrid/build/propgrid_vc9.sln
Normal file
179
wxPG/propgrid/build/propgrid_vc9.sln
Normal file
@ -0,0 +1,179 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual Studio 2008
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgrid", "propgrid_propgrid_vc9.vcproj", "{ECA5FC4D-29CE-5030-9175-551834BF6CB0}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgridsample", "propgrid_propgridsample_vc9.vcproj", "{3E5E89F7-6420-500C-9277-91A5DBB31651}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0} = {ECA5FC4D-29CE-5030-9175-551834BF6CB0}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Static ANSI Release Multilib|Win32 = Static ANSI Release Multilib|Win32
|
||||
Static ANSI Release Multilib|x64 = Static ANSI Release Multilib|x64
|
||||
Static ANSI Release Monolithic|Win32 = Static ANSI Release Monolithic|Win32
|
||||
Static ANSI Release Monolithic|x64 = Static ANSI Release Monolithic|x64
|
||||
Static ANSI Debug Multilib|Win32 = Static ANSI Debug Multilib|Win32
|
||||
Static ANSI Debug Multilib|x64 = Static ANSI Debug Multilib|x64
|
||||
Static ANSI Debug Monolithic|Win32 = Static ANSI Debug Monolithic|Win32
|
||||
Static ANSI Debug Monolithic|x64 = Static ANSI Debug Monolithic|x64
|
||||
Static Unicode Release Multilib|Win32 = Static Unicode Release Multilib|Win32
|
||||
Static Unicode Release Multilib|x64 = Static Unicode Release Multilib|x64
|
||||
Static Unicode Release Monolithic|Win32 = Static Unicode Release Monolithic|Win32
|
||||
Static Unicode Release Monolithic|x64 = Static Unicode Release Monolithic|x64
|
||||
Static Unicode Debug Multilib|Win32 = Static Unicode Debug Multilib|Win32
|
||||
Static Unicode Debug Multilib|x64 = Static Unicode Debug Multilib|x64
|
||||
Static Unicode Debug Monolithic|Win32 = Static Unicode Debug Monolithic|Win32
|
||||
Static Unicode Debug Monolithic|x64 = Static Unicode Debug Monolithic|x64
|
||||
DLL ANSI Release Multilib|Win32 = DLL ANSI Release Multilib|Win32
|
||||
DLL ANSI Release Multilib|x64 = DLL ANSI Release Multilib|x64
|
||||
DLL ANSI Release Monolithic|Win32 = DLL ANSI Release Monolithic|Win32
|
||||
DLL ANSI Release Monolithic|x64 = DLL ANSI Release Monolithic|x64
|
||||
DLL ANSI Debug Multilib|Win32 = DLL ANSI Debug Multilib|Win32
|
||||
DLL ANSI Debug Multilib|x64 = DLL ANSI Debug Multilib|x64
|
||||
DLL ANSI Debug Monolithic|Win32 = DLL ANSI Debug Monolithic|Win32
|
||||
DLL ANSI Debug Monolithic|x64 = DLL ANSI Debug Monolithic|x64
|
||||
DLL Unicode Release Multilib|Win32 = DLL Unicode Release Multilib|Win32
|
||||
DLL Unicode Release Multilib|x64 = DLL Unicode Release Multilib|x64
|
||||
DLL Unicode Release Monolithic|Win32 = DLL Unicode Release Monolithic|Win32
|
||||
DLL Unicode Release Monolithic|x64 = DLL Unicode Release Monolithic|x64
|
||||
DLL Unicode Debug Multilib|Win32 = DLL Unicode Debug Multilib|Win32
|
||||
DLL Unicode Debug Multilib|x64 = DLL Unicode Debug Multilib|x64
|
||||
DLL Unicode Debug Monolithic|Win32 = DLL Unicode Debug Monolithic|Win32
|
||||
DLL Unicode Debug Monolithic|x64 = DLL Unicode Debug Monolithic|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|x64.ActiveCfg = Static ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Multilib|x64.Build.0 = Static ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|x64.ActiveCfg = Static ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Release Monolithic|x64.Build.0 = Static ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|x64.ActiveCfg = Static ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Multilib|x64.Build.0 = Static ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|x64.ActiveCfg = Static ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static ANSI Debug Monolithic|x64.Build.0 = Static ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|x64.ActiveCfg = Static Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Multilib|x64.Build.0 = Static Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|x64.ActiveCfg = Static Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Release Monolithic|x64.Build.0 = Static Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|x64.ActiveCfg = Static Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Multilib|x64.Build.0 = Static Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|x64.ActiveCfg = Static Unicode Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.Static Unicode Debug Monolithic|x64.Build.0 = Static Unicode Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|x64.ActiveCfg = DLL ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Multilib|x64.Build.0 = DLL ANSI Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|x64.ActiveCfg = DLL ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Release Monolithic|x64.Build.0 = DLL ANSI Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|x64.ActiveCfg = DLL ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Multilib|x64.Build.0 = DLL ANSI Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|x64.ActiveCfg = DLL ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL ANSI Debug Monolithic|x64.Build.0 = DLL ANSI Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|x64.ActiveCfg = DLL Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Multilib|x64.Build.0 = DLL Unicode Release Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|x64.ActiveCfg = DLL Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Release Monolithic|x64.Build.0 = DLL Unicode Release Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|x64.ActiveCfg = DLL Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Multilib|x64.Build.0 = DLL Unicode Debug Multilib|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|x64.ActiveCfg = DLL Unicode Debug Monolithic|x64
|
||||
{ECA5FC4D-29CE-5030-9175-551834BF6CB0}.DLL Unicode Debug Monolithic|x64.Build.0 = DLL Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.ActiveCfg = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|Win32.Build.0 = Static ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|x64.ActiveCfg = Static ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Multilib|x64.Build.0 = Static ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.ActiveCfg = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|Win32.Build.0 = Static ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|x64.ActiveCfg = Static ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Release Monolithic|x64.Build.0 = Static ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.ActiveCfg = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|Win32.Build.0 = Static ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|x64.ActiveCfg = Static ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Multilib|x64.Build.0 = Static ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.ActiveCfg = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|Win32.Build.0 = Static ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|x64.ActiveCfg = Static ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static ANSI Debug Monolithic|x64.Build.0 = Static ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.ActiveCfg = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|Win32.Build.0 = Static Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|x64.ActiveCfg = Static Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Multilib|x64.Build.0 = Static Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.ActiveCfg = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|Win32.Build.0 = Static Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|x64.ActiveCfg = Static Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Release Monolithic|x64.Build.0 = Static Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.ActiveCfg = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|Win32.Build.0 = Static Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|x64.ActiveCfg = Static Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Multilib|x64.Build.0 = Static Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.ActiveCfg = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|Win32.Build.0 = Static Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|x64.ActiveCfg = Static Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.Static Unicode Debug Monolithic|x64.Build.0 = Static Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.ActiveCfg = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|Win32.Build.0 = DLL ANSI Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|x64.ActiveCfg = DLL ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Multilib|x64.Build.0 = DLL ANSI Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.ActiveCfg = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|Win32.Build.0 = DLL ANSI Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|x64.ActiveCfg = DLL ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Release Monolithic|x64.Build.0 = DLL ANSI Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.ActiveCfg = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|Win32.Build.0 = DLL ANSI Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|x64.ActiveCfg = DLL ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Multilib|x64.Build.0 = DLL ANSI Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.ActiveCfg = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|Win32.Build.0 = DLL ANSI Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|x64.ActiveCfg = DLL ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL ANSI Debug Monolithic|x64.Build.0 = DLL ANSI Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.ActiveCfg = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|Win32.Build.0 = DLL Unicode Release Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|x64.ActiveCfg = DLL Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Multilib|x64.Build.0 = DLL Unicode Release Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.ActiveCfg = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|Win32.Build.0 = DLL Unicode Release Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|x64.ActiveCfg = DLL Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Release Monolithic|x64.Build.0 = DLL Unicode Release Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.ActiveCfg = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|Win32.Build.0 = DLL Unicode Debug Multilib|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|x64.ActiveCfg = DLL Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Multilib|x64.Build.0 = DLL Unicode Debug Multilib|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.ActiveCfg = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|Win32.Build.0 = DLL Unicode Debug Monolithic|Win32
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|x64.ActiveCfg = DLL Unicode Debug Monolithic|x64
|
||||
{3E5E89F7-6420-500C-9277-91A5DBB31651}.DLL Unicode Debug Monolithic|x64.Build.0 = DLL Unicode Debug Monolithic|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/CL.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/CL.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/CL.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/CL.write.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/advprops.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/advprops.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/cl.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/cl.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/editors.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/editors.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/extras.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/extras.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/link.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/link.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/link.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/link.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/link.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/link.write.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/manager.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/manager.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/mt.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/mt.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/mt.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/mt.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/mt.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/mt.write.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/odcombo.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/odcombo.obj
Normal file
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
||||
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*' />
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
</assembly>
|
@ -0,0 +1,2 @@
|
||||
#v4.0:v100
|
||||
DLL ANSI Release Multilib|Win32|C:\Campo11\wxPG\propgrid\build\|
|
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/propgrid.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/propgrid.obj
Normal file
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
^C:\U\guy\wxPG\propgrid\build\propgrid_propgrid_vc10.vcxproj
|
||||
C:\U\guy\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.lib
|
||||
C:\U\guy\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.exp
|
||||
^C:\Campo11\wxPG\propgrid\build\propgrid_propgrid_vc10.vcxproj
|
||||
C:\Campo11\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.lib
|
||||
C:\Campo11\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.exp
|
||||
^C:\Campo11\wxPG\propgrid\build\propgrid_propgrid_vc10.vcxproj
|
||||
C:\Campo11\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.lib
|
||||
C:\Campo11\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.exp
|
@ -0,0 +1,28 @@
|
||||
Build started 22/03/2012 10:21:18.
|
||||
1>Project "C:\Campo11\wxPG\propgrid\build\propgrid_propgrid_vc10.vcxproj" on node 2 (build target(s)).
|
||||
1>InitializeBuildStatus:
|
||||
Creating "vcmsw_dll\propgrid\propgrid.unsuccessfulbuild" because "AlwaysCreate" was specified.
|
||||
ClCompile:
|
||||
All outputs are up-to-date.
|
||||
1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\Campo11\wxPG\propgrid\build\..\lib\vc_dll\propgrid.dll) does not match the Linker's OutputFile property value (C:\Campo11\wxPG\propgrid\lib\vc_dll\wxcode_msw28_propgrid.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).
|
||||
1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(992,5): warning MSB8012: TargetName(propgrid) does not match the Linker's OutputFile property value (wxcode_msw28_propgrid). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).
|
||||
Link:
|
||||
c:\Program Files\Microsoft Visual Studio 10.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"..\lib\vc_dll\wxcode_msw28_propgrid.dll" /INCREMENTAL:NO /NOLOGO /LIBPATH:..\..\..\wx28X\lib\vc_dll wxmsw28_adv.lib wxmsw28_core.lib wxbase28.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregex.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib odbc32.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 /MANIFEST /ManifestFile:"vcmsw_dll\propgrid\propgrid.dll.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"..\lib\vc_dll\wxcode_msw28_propgrid.pdb" /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"..\lib\vc_dll\wxcode_msw28_propgrid.lib" /MACHINE:X86 /DLL vcmsw_dll\propgrid\advprops.obj
|
||||
vcmsw_dll\propgrid\editors.obj
|
||||
vcmsw_dll\propgrid\extras.obj
|
||||
vcmsw_dll\propgrid\manager.obj
|
||||
vcmsw_dll\propgrid\odcombo.obj
|
||||
vcmsw_dll\propgrid\propgrid.obj
|
||||
vcmsw_dll\propgrid\props.obj
|
||||
Creating library ..\lib\vc_dll\wxcode_msw28_propgrid.lib and object ..\lib\vc_dll\wxcode_msw28_propgrid.exp
|
||||
propgrid_propgrid_vc10.vcxproj -> C:\Campo11\wxPG\propgrid\build\..\lib\vc_dll\propgrid.dll
|
||||
Manifest:
|
||||
C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /outputresource:"..\lib\vc_dll\wxcode_msw28_propgrid.dll;#2" /manifest vcmsw_dll\propgrid\propgrid.dll.intermediate.manifest
|
||||
FinalizeBuildStatus:
|
||||
Deleting file "vcmsw_dll\propgrid\propgrid.unsuccessfulbuild".
|
||||
Touching "vcmsw_dll\propgrid\propgrid.lastbuildstate".
|
||||
1>Done Building Project "C:\Campo11\wxPG\propgrid\build\propgrid_propgrid_vc10.vcxproj" (build target(s)).
|
||||
|
||||
Build succeeded.
|
||||
|
||||
Time Elapsed 00:00:01.51
|
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/props.obj
Normal file
BIN
wxPG/propgrid/build/vcmsw_dll/propgrid/props.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/CL.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/CL.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/CL.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/CL.write.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/advprops.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/advprops.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/cl.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/cl.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/editors.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/editors.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/extras.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/extras.obj
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/link.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/link.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/link.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/link.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/link.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/link.write.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/manager.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/manager.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/mt.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/mt.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/mt.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/mt.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/mt.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/mt.write.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/odcombo.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/odcombo.obj
Normal file
Binary file not shown.
@ -0,0 +1,35 @@
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\ADVPROPS.OBJ
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\cl.command.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\CL.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\CL.write.1.tlog
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\EDITORS.OBJ
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\EXTRAS.OBJ
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.4996.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.4996.write.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.4996-cvtres.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.4996-cvtres.write.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.command.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link.write.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link-cvtres.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\link-cvtres.write.1.tlog
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\MANAGER.OBJ
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\mt.command.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\mt.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\mt.write.1.tlog
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\ODCOMBO.OBJ
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\PROPGRID.DLL.EMBED.MANIFEST
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\PROPGRID.DLL.EMBED.MANIFEST.RES
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\PROPGRID.DLL.INTERMEDIATE.MANIFEST
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\PROPGRID.OBJ
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\propgrid.write.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\propgrid_manifest.rc
|
||||
C:\U\GUY\WXPG\PROPGRID\BUILD\VCMSWD_DLL\PROPGRID\PROPS.OBJ
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\rc.command.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\rc.read.1.tlog
|
||||
C:\U\guy\wxPG\propgrid\build\vcmswd_dll\propgrid\rc.write.1.tlog
|
||||
C:\U\GUY\WXPG\PROPGRID\LIB\VC_DLL\WXCODE_MSW28D_PROPGRID.DLL
|
||||
C:\U\guy\wxPG\propgrid\lib\vc_dll\wxcode_msw28d_propgrid.exp
|
||||
C:\U\GUY\WXPG\PROPGRID\LIB\VC_DLL\WXCODE_MSW28D_PROPGRID.ILK
|
||||
C:\U\guy\wxPG\propgrid\lib\vc_dll\wxcode_msw28d_propgrid.lib
|
||||
C:\U\GUY\WXPG\PROPGRID\LIB\VC_DLL\WXCODE_MSW28D_PROPGRID.PDB
|
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="x86" publicKeyToken="6595b64144ccf1df" language="*"></assemblyIdentity>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
</assembly>
|
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
||||
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*' />
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
</assembly>
|
@ -0,0 +1,2 @@
|
||||
#v4.0:v100
|
||||
DLL ANSI Debug Monolithic|Win32|C:\u\R_12_00\wxPG\propgrid\build\|
|
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/propgrid.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/propgrid.obj
Normal file
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
^C:\U\guy\wxPG\propgrid\build\propgrid_propgrid_vc10.vcxproj
|
||||
C:\U\guy\wxPG\propgrid\lib\vc_dll\wxcode_msw28d_propgrid.lib
|
||||
C:\U\guy\wxPG\propgrid\lib\vc_dll\wxcode_msw28d_propgrid.exp
|
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/propgrid_manifest.rc
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/propgrid_manifest.rc
Normal file
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
props.cpp
|
||||
propgrid.cpp
|
||||
odcombo.cpp
|
||||
manager.cpp
|
||||
extras.cpp
|
||||
editors.cpp
|
||||
advprops.cpp
|
||||
Generazione del codice in corso...
|
||||
C:\Programmi\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\u\R_12_00\wxPG\propgrid\build\..\lib\vc_dll\propgrid.dll) non corrisponde al valore della proprietà OutputFile di Linker (C:\u\R_12_00\wxPG\propgrid\lib\vc_dll\wxcode_msw28d_propgrid.dll). Questa condizione potrebbe impedire la corretta compilazione del progetto. Per risolvere il problema, accertarsi che i valori di proprietà $(OutDir), $(TargetName) e $(TargetExt) corrispondano al valore specificato in %(Link.OutputFile).
|
||||
C:\Programmi\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(992,5): warning MSB8012: TargetName(propgrid) non corrisponde al valore della proprietà OutputFile di Linker (wxcode_msw28d_propgrid). Questa condizione potrebbe impedire la corretta compilazione del progetto. Per risolvere il problema, accertarsi che i valori di proprietà $(OutDir), $(TargetName) e $(TargetExt) corrispondano al valore specificato in %(Link.OutputFile).
|
||||
LINK : ..\lib\vc_dll\wxcode_msw28d_propgrid.dll non trovato o non compilato dall'ultimo collegamento incrementale; verrà eseguito il collegamento completo
|
||||
LINK : fatal error LNK1104: impossibile aprire il file 'wxmsw28d.lib'
|
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/props.obj
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/props.obj
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/rc.command.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/rc.command.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/rc.read.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/rc.read.1.tlog
Normal file
Binary file not shown.
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/rc.write.1.tlog
Normal file
BIN
wxPG/propgrid/build/vcmswd_dll/propgrid/rc.write.1.tlog
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user