From 5e527213a2430bb3018e5eebd909aef294edf9b5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- dist/examples/cxx/tree/custom/mixed/makefile | 40 -- .../cxx/tree/custom/mixed/mixed-vc10.vcxproj | 208 ---------- .../tree/custom/mixed/mixed-vc10.vcxproj.filters | 51 --- .../cxx/tree/custom/mixed/mixed-vc11.vcxproj | 212 ---------- .../tree/custom/mixed/mixed-vc11.vcxproj.filters | 51 --- .../cxx/tree/custom/mixed/mixed-vc12.vcxproj | 216 ---------- .../tree/custom/mixed/mixed-vc12.vcxproj.filters | 51 --- .../cxx/tree/custom/mixed/mixed-vc8.vcproj | 440 --------------------- .../cxx/tree/custom/mixed/mixed-vc9.vcproj | 437 -------------------- 9 files changed, 1706 deletions(-) delete mode 100644 dist/examples/cxx/tree/custom/mixed/makefile delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj.filters delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj.filters delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj.filters delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc8.vcproj delete mode 100644 dist/examples/cxx/tree/custom/mixed/mixed-vc9.vcproj (limited to 'dist/examples/cxx/tree/custom/mixed') diff --git a/dist/examples/cxx/tree/custom/mixed/makefile b/dist/examples/cxx/tree/custom/mixed/makefile deleted file mode 100644 index 9c7974d..0000000 --- a/dist/examples/cxx/tree/custom/mixed/makefile +++ /dev/null @@ -1,40 +0,0 @@ -root := ../../../.. - -include $(root)/build/cxx/rules.make -include $(root)/build/xsd/tree-rules.make - - -override XSDFLAGS += --generate-inline --generate-serialization \ ---hxx-epilogue '\#include "people-custom.hxx"' - -ifneq ($(shell uname -o 2>&1),Msys) -override XSDFLAGS += --custom-type bio=/bio_base -else -# Prevent MSYS from converting / to Windows path. -override XSDFLAGS += --custom-type bio=//bio_base -endif - - -# Build. -# -driver: driver.o people.o people-custom.o - -people.o: people.cxx people.ixx people.hxx people-custom.hxx -driver.o: driver.cxx people.ixx people.hxx people-custom.hxx -people-custom.o: people-custom.cxx people.ixx people.hxx people-custom.hxx - -people.cxx people.hxx people.ixx: people.xsd - - -# Test -# -.PHONY: test -test: driver people.xml - ./driver people.xml - - -# Clean. -# -.PHONY: clean -clean: - rm -f people-custom.o people.o people.?xx driver.o driver diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj b/dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj deleted file mode 100644 index 86258d4..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj +++ /dev/null @@ -1,208 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - mixed - {26CE0C08-7621-403A-88A7-206E64F32C66} - mixed - Win32Proj - - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - driver - driver - driver - driver - Debug\ - Debug\ - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - Release\ - Release\ - false - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - - - xerces-c_3D.lib;%(AdditionalDependencies) - $(TargetPath) - true - $(OutDir)driver.pdb - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - - - xerces-c_3D.lib;%(AdditionalDependencies) - $(TargetPath) - true - $(OutDir)driver.pdb - Console - false - - - MachineX64 - - - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - - - xerces-c_3.lib;%(AdditionalDependencies) - $(TargetPath) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - - - xerces-c_3.lib;%(AdditionalDependencies) - $(TargetPath) - true - Console - true - true - false - - - MachineX64 - - - - - - - - - - - - - - - - - - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - - - - - - \ No newline at end of file diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj.filters b/dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj.filters deleted file mode 100644 index 1f317e1..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc10.vcxproj.filters +++ /dev/null @@ -1,51 +0,0 @@ - - - - - {CBA3D0E2-DDB8-4ABE-8B5A-7A28191CA323} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {54846A6A-25CD-4C8C-A5F1-2DAC77554F47} - h;hpp;hxx;hm;inl;inc;xsd - - - {ba5c74eb-b935-4573-98b5-2987ed135ec6} - ixx - - - {b02fd6d3-59e2-4819-9c5b-66ef2b5834a0} - xsd - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - Inline Files - - - - - - Schema Files - - - \ No newline at end of file diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj b/dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj deleted file mode 100644 index 9afcc81..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj +++ /dev/null @@ -1,212 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - mixed - {26CE0C08-7621-403A-88A7-206E64F32C66} - mixed - Win32Proj - - - - Application - v110 - MultiByte - - - Application - v110 - MultiByte - - - Application - v110 - MultiByte - - - Application - v110 - MultiByte - - - - - - - - - - - - - - - - - - - driver - driver - driver - driver - Debug\ - Debug\ - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - Release\ - Release\ - false - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - - - xerces-c_3D.lib;%(AdditionalDependencies) - $(TargetPath) - true - $(OutDir)driver.pdb - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - - - xerces-c_3D.lib;%(AdditionalDependencies) - $(TargetPath) - true - $(OutDir)driver.pdb - Console - false - - - MachineX64 - - - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - - - xerces-c_3.lib;%(AdditionalDependencies) - $(TargetPath) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - - - xerces-c_3.lib;%(AdditionalDependencies) - $(TargetPath) - true - Console - true - true - false - - - MachineX64 - - - - - - - - - - - - - - - - - - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - - - - - - \ No newline at end of file diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj.filters b/dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj.filters deleted file mode 100644 index 1f317e1..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc11.vcxproj.filters +++ /dev/null @@ -1,51 +0,0 @@ - - - - - {CBA3D0E2-DDB8-4ABE-8B5A-7A28191CA323} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {54846A6A-25CD-4C8C-A5F1-2DAC77554F47} - h;hpp;hxx;hm;inl;inc;xsd - - - {ba5c74eb-b935-4573-98b5-2987ed135ec6} - ixx - - - {b02fd6d3-59e2-4819-9c5b-66ef2b5834a0} - xsd - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - Inline Files - - - - - - Schema Files - - - \ No newline at end of file diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj b/dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj deleted file mode 100644 index a7b4f73..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj +++ /dev/null @@ -1,216 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - mixed - {26CE0C08-7621-403A-88A7-206E64F32C66} - mixed - Win32Proj - - - - Application - v120 - MultiByte - - - Application - v120 - MultiByte - - - Application - v120 - MultiByte - - - Application - v120 - MultiByte - - - - - - - - - - - - - - - - - - - driver - driver - driver - driver - Debug\ - Debug\ - true - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - true - Release\ - Release\ - false - $(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - false - - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - true - - - xerces-c_3D.lib;%(AdditionalDependencies) - $(TargetPath) - true - $(OutDir)driver.pdb - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - - - Level3 - true - - - xerces-c_3D.lib;%(AdditionalDependencies) - $(TargetPath) - true - $(OutDir)driver.pdb - Console - false - - - MachineX64 - - - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - true - - - xerces-c_3.lib;%(AdditionalDependencies) - $(TargetPath) - true - Console - true - true - false - - - MachineX86 - - - - - X64 - - - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level3 - true - - - xerces-c_3.lib;%(AdditionalDependencies) - $(TargetPath) - true - Console - true - true - false - - - MachineX64 - - - - - - - - - - - - - - - - - - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - xsd people.xsd - xsd cxx-tree --generate-inline --generate-serialization --custom-type bio=/bio_base --hxx-epilogue "#include \"people-custom.hxx\"" people.xsd - people.hxx;people.ixx;people.cxx;%(Outputs) - - - - - - \ No newline at end of file diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj.filters b/dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj.filters deleted file mode 100644 index 1f317e1..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc12.vcxproj.filters +++ /dev/null @@ -1,51 +0,0 @@ - - - - - {CBA3D0E2-DDB8-4ABE-8B5A-7A28191CA323} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {54846A6A-25CD-4C8C-A5F1-2DAC77554F47} - h;hpp;hxx;hm;inl;inc;xsd - - - {ba5c74eb-b935-4573-98b5-2987ed135ec6} - ixx - - - {b02fd6d3-59e2-4819-9c5b-66ef2b5834a0} - xsd - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - Inline Files - - - - - - Schema Files - - - \ No newline at end of file diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc8.vcproj b/dist/examples/cxx/tree/custom/mixed/mixed-vc8.vcproj deleted file mode 100644 index a02149b..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc8.vcproj +++ /dev/null @@ -1,440 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dist/examples/cxx/tree/custom/mixed/mixed-vc9.vcproj b/dist/examples/cxx/tree/custom/mixed/mixed-vc9.vcproj deleted file mode 100644 index 331c786..0000000 --- a/dist/examples/cxx/tree/custom/mixed/mixed-vc9.vcproj +++ /dev/null @@ -1,437 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.1