9Nqw&OxzKa-&sChPJz0NJIoWs;0=$ftbSx&ysAqJ~=
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdC
+ Win32Proj
+
+
+ 10.0.22581.0
+
+
+
+
+
+
+
+
+ x64
+
+
+ Application
+ v143
+ MultiByte
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+
+ false
+ Console
+
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
+
+
+
diff --git a/CMakeFiles/3.23.0-rc4/CompilerIdCXX/CMakeCXXCompilerId.cpp b/CMakeFiles/3.23.0-rc4/CompilerIdCXX/CMakeCXXCompilerId.cpp
new file mode 100644
index 0000000..57a7a85
--- /dev/null
+++ b/CMakeFiles/3.23.0-rc4/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -0,0 +1,816 @@
+/* This source file must have a .cpp extension so that all C++ compilers
+ recognize the extension without flags. Borland does not know .cxx for
+ example. */
+#ifndef __cplusplus
+# error "A C compiler has been selected for C++."
+#endif
+
+#if !defined(__has_include)
+/* If the compiler does not have __has_include, pretend the answer is
+ always no. */
+# define __has_include(x) 0
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__COMO__)
+# define COMPILER_ID "Comeau"
+ /* __COMO_VERSION__ = VRR */
+# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
+# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
+
+#elif defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+# endif
+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
+ except that a few beta releases use the old format with V=2021. */
+# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# else
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
+ /* The third version component from --version is an update index,
+ but no macro is provided for it. */
+# define COMPILER_VERSION_PATCH DEC(0)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
+# define COMPILER_ID "IntelLLVM"
+#if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+#endif
+#if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+#endif
+/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
+ * later. Look for 6 digit vs. 8 digit version number to decide encoding.
+ * VVVV is no smaller than the current year when a version is released.
+ */
+#if __INTEL_LLVM_COMPILER < 1000000L
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
+#else
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
+#endif
+#if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+#endif
+#if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+#elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+#endif
+#if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+#endif
+#if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+#endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_CC)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_CC >= 0x5100
+ /* __SUNPRO_CC = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# endif
+
+#elif defined(__HP_aCC)
+# define COMPILER_ID "HP"
+ /* __HP_aCC = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
+
+#elif defined(__DECCXX)
+# define COMPILER_ID "Compaq"
+ /* __DECCXX_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
+
+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__open_xl__) && defined(__clang__)
+# define COMPILER_ID "IBMClang"
+# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
+# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
+# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
+
+
+#elif defined(__ibmxl__) && defined(__clang__)
+# define COMPILER_ID "XLClang"
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__NVCOMPILER)
+# define COMPILER_ID "NVHPC"
+# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
+# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
+# if defined(__NVCOMPILER_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
+# endif
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__CLANG_FUJITSU)
+# define COMPILER_ID "FujitsuClang"
+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
+# define COMPILER_VERSION_INTERNAL_STR __clang_version__
+
+
+#elif defined(__FUJITSU)
+# define COMPILER_ID "Fujitsu"
+# if defined(__FCC_version__)
+# define COMPILER_VERSION __FCC_version__
+# elif defined(__FCC_major__)
+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
+# endif
+# if defined(__fcc_version)
+# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
+# elif defined(__FCC_VERSION)
+# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
+# endif
+
+
+#elif defined(__ghs__)
+# define COMPILER_ID "GHS"
+/* __GHS_VERSION_NUMBER = VVVVRP */
+# ifdef __GHS_VERSION_NUMBER
+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
+# endif
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__ARMCC_VERSION) && !defined(__clang__)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
+# define COMPILER_ID "ARMClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
+# define COMPILER_ID "LCC"
+# define COMPILER_VERSION_MAJOR DEC(1)
+# if defined(__LCC__)
+# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
+# endif
+# if defined(__LCC_MINOR__)
+# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
+# endif
+# if defined(__GNUC__) && defined(__GNUC_MINOR__)
+# define SIMULATE_ID "GNU"
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+# endif
+
+#elif defined(__GNUC__) || defined(__GNUG__)
+# define COMPILER_ID "GNU"
+# if defined(__GNUC__)
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# else
+# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+# if defined(__VER__) && defined(__ICCARM__)
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__MSYS__)
+# define PLATFORM_ID "MSYS"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# elif defined(__VXWORKS__)
+# define PLATFORM_ID "VxWorks"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#elif defined(__INTEGRITY)
+# if defined(INT_178B)
+# define PLATFORM_ID "Integrity178"
+
+# else /* regular Integrity */
+# define PLATFORM_ID "Integrity"
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_ARM64EC)
+# define ARCHITECTURE_ID "ARM64EC"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM64)
+# define ARCHITECTURE_ID "ARM64"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# if defined(__ICCARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__ICCRX__)
+# define ARCHITECTURE_ID "RX"
+
+# elif defined(__ICCRH850__)
+# define ARCHITECTURE_ID "RH850"
+
+# elif defined(__ICCRL78__)
+# define ARCHITECTURE_ID "RL78"
+
+# elif defined(__ICCRISCV__)
+# define ARCHITECTURE_ID "RISCV"
+
+# elif defined(__ICCAVR__)
+# define ARCHITECTURE_ID "AVR"
+
+# elif defined(__ICC430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__ICCV850__)
+# define ARCHITECTURE_ID "V850"
+
+# elif defined(__ICC8051__)
+# define ARCHITECTURE_ID "8051"
+
+# elif defined(__ICCSTM8__)
+# define ARCHITECTURE_ID "STM8"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__ghs__)
+# if defined(__PPC64__)
+# define ARCHITECTURE_ID "PPC64"
+
+# elif defined(__ppc__)
+# define ARCHITECTURE_ID "PPC"
+
+# elif defined(__ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__x86_64__)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(__i386__)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__TI_COMPILER_VERSION__)
+# if defined(__TI_ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__MSP430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__TMS320C28XX__)
+# define ARCHITECTURE_ID "TMS320C28x"
+
+# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
+# define ARCHITECTURE_ID "TMS320C6x"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number. */
+#ifdef COMPILER_VERSION
+char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
+
+/* Construct a string literal encoding the version number components. */
+#elif defined(COMPILER_VERSION_MAJOR)
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the internal version number. */
+#ifdef COMPILER_VERSION_INTERNAL
+char const info_version_internal[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
+ 'i','n','t','e','r','n','a','l','[',
+ COMPILER_VERSION_INTERNAL,']','\0'};
+#elif defined(COMPILER_VERSION_INTERNAL_STR)
+char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
+# if defined(__INTEL_CXX11_MODE__)
+# if defined(__cpp_aggregate_nsdmi)
+# define CXX_STD 201402L
+# else
+# define CXX_STD 201103L
+# endif
+# else
+# define CXX_STD 199711L
+# endif
+#elif defined(_MSC_VER) && defined(_MSVC_LANG)
+# define CXX_STD _MSVC_LANG
+#else
+# define CXX_STD __cplusplus
+#endif
+
+const char* info_language_standard_default = "INFO" ":" "standard_default["
+#if CXX_STD > 202002L
+ "23"
+#elif CXX_STD > 201703L
+ "20"
+#elif CXX_STD >= 201703L
+ "17"
+#elif CXX_STD >= 201402L
+ "14"
+#elif CXX_STD >= 201103L
+ "11"
+#else
+ "98"
+#endif
+"]";
+
+const char* info_language_extensions_default = "INFO" ":" "extensions_default["
+#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
+ defined(__TI_COMPILER_VERSION__)) && \
+ !defined(__STRICT_ANSI__)
+ "ON"
+#else
+ "OFF"
+#endif
+"]";
+
+/*--------------------------------------------------------------------------*/
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef COMPILER_VERSION_INTERNAL
+ require += info_version_internal[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
+ require += info_cray[argc];
+#endif
+ require += info_language_standard_default[argc];
+ require += info_language_extensions_default[argc];
+ (void)argv;
+ return require;
+}
diff --git a/CMakeFiles/3.23.0-rc4/CompilerIdCXX/CompilerIdCXX.exe b/CMakeFiles/3.23.0-rc4/CompilerIdCXX/CompilerIdCXX.exe
new file mode 100644
index 0000000000000000000000000000000000000000..cfb6ad062dc88758dadbb4160e6f83f78240ae3a
GIT binary patch
literal 15360
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
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdCXX
+ Win32Proj
+
+
+ 10.0.22581.0
+
+
+
+
+
+
+
+
+ x64
+
+
+ Application
+ v143
+ MultiByte
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+
+ false
+ Console
+
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
+
+
+
diff --git a/CMakeFiles/3.23.0-rc4/VCTargetsPath.txt b/CMakeFiles/3.23.0-rc4/VCTargetsPath.txt
new file mode 100644
index 0000000..ac3a16a
--- /dev/null
+++ b/CMakeFiles/3.23.0-rc4/VCTargetsPath.txt
@@ -0,0 +1 @@
+I:/vsent2022/MSBuild/Microsoft/VC/v170
diff --git a/CMakeFiles/3.23.0-rc4/VCTargetsPath.vcxproj b/CMakeFiles/3.23.0-rc4/VCTargetsPath.vcxproj
new file mode 100644
index 0000000..7bcd038
--- /dev/null
+++ b/CMakeFiles/3.23.0-rc4/VCTargetsPath.vcxproj
@@ -0,0 +1,31 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {F3FC6D86-508D-3FB1-96D2-995F08B142EC}
+ Win32Proj
+ x64
+ 10.0.22581.0
+
+
+
+ x64
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+ echo VCTargetsPath=$(VCTargetsPath)
+
+
+
+
diff --git a/CMakeFiles/6a64f629f7894d851fbaf75ba03068b9/INSTALL_force.rule b/CMakeFiles/6a64f629f7894d851fbaf75ba03068b9/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/6a64f629f7894d851fbaf75ba03068b9/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/6a64f629f7894d851fbaf75ba03068b9/PACKAGE_force.rule b/CMakeFiles/6a64f629f7894d851fbaf75ba03068b9/PACKAGE_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/6a64f629f7894d851fbaf75ba03068b9/PACKAGE_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/8d200652f38e246405af94ee0782eb0e/INSTALL_force.rule b/CMakeFiles/8d200652f38e246405af94ee0782eb0e/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/8d200652f38e246405af94ee0782eb0e/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/8d200652f38e246405af94ee0782eb0e/PACKAGE_force.rule b/CMakeFiles/8d200652f38e246405af94ee0782eb0e/PACKAGE_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/8d200652f38e246405af94ee0782eb0e/PACKAGE_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/TargetDirectories.txt b/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..c4c48b0
--- /dev/null
+++ b/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,18 @@
+D:/winflexbison/CMakeFiles/PACKAGE.dir
+D:/winflexbison/CMakeFiles/INSTALL.dir
+D:/winflexbison/CMakeFiles/ALL_BUILD.dir
+D:/winflexbison/CMakeFiles/ZERO_CHECK.dir
+D:/winflexbison/common/CMakeFiles/winflexbison_common.dir
+D:/winflexbison/common/CMakeFiles/PACKAGE.dir
+D:/winflexbison/common/CMakeFiles/INSTALL.dir
+D:/winflexbison/common/CMakeFiles/ALL_BUILD.dir
+D:/winflexbison/flex/CMakeFiles/win_flex.dir
+D:/winflexbison/flex/CMakeFiles/fl.dir
+D:/winflexbison/flex/CMakeFiles/PACKAGE.dir
+D:/winflexbison/flex/CMakeFiles/INSTALL.dir
+D:/winflexbison/flex/CMakeFiles/ALL_BUILD.dir
+D:/winflexbison/bison/CMakeFiles/win_bison.dir
+D:/winflexbison/bison/CMakeFiles/y.dir
+D:/winflexbison/bison/CMakeFiles/PACKAGE.dir
+D:/winflexbison/bison/CMakeFiles/INSTALL.dir
+D:/winflexbison/bison/CMakeFiles/ALL_BUILD.dir
diff --git a/CMakeFiles/cmake.check_cache b/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/INSTALL_force.rule b/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/PACKAGE_force.rule b/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/PACKAGE_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/PACKAGE_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/generate.stamp.rule b/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/generate.stamp.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/CMakeFiles/dfdce5c0c86227006a5184daff4ed217/generate.stamp.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/CMakeFiles/generate.stamp b/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/CMakeFiles/generate.stamp.depend b/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..d88912b
--- /dev/null
+++ b/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,102 @@
+# CMake generation dependency list for this directory.
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCCompiler.cmake.in
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCCompilerABI.c
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCInformation.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCXXCompiler.cmake.in
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCXXCompilerABI.cpp
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCXXInformation.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCommonLanguageInclude.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeCompilerIdDetection.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineCCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineCXXCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineCompileFeatures.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineCompilerABI.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineCompilerId.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineRCCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeDetermineSystem.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeFindBinUtils.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeGenericSystem.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeInitializeConfigs.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeLanguageInformation.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeParseImplicitIncludeInfo.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeParseImplicitLinkInfo.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeParseLibraryArchitecture.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeRCCompiler.cmake.in
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeRCInformation.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeSystem.cmake.in
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeSystemSpecificInformation.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeSystemSpecificInitialize.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeTestCCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeTestCXXCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeTestCompilerCommon.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CMakeTestRCCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CPack.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CPackComponent.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/ADSP-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/ARMCC-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/ARMClang-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/AppleClang-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Borland-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Bruce-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/CMakeCommonCompilerMacros.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Clang-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Clang-DetermineCompilerInternal.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Compaq-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Cray-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Embarcadero-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/GHS-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/GNU-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/HP-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/IAR-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Intel-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/LCC-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/MSVC-C.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/MSVC-CXX.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/MSVC-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/NVHPC-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/PGI-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/PathScale-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/SCO-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/SDCC-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/SunPro-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/TI-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/Watcom-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/XL-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/XL-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/XLClang-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/zOS-C-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/CompilerId/VS-10.vcxproj.in
+C:/Program Files/CMake/share/cmake-3.23/Modules/Internal/FeatureTesting.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Platform/Windows-Determine-CXX.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Platform/Windows-MSVC-C.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Platform/Windows-MSVC-CXX.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Platform/Windows-MSVC.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Platform/Windows.cmake
+C:/Program Files/CMake/share/cmake-3.23/Modules/Platform/WindowsPaths.cmake
+C:/Program Files/CMake/share/cmake-3.23/Templates/CPackConfig.cmake.in
+D:/winflexbison/CMakeFiles/3.23.0-rc4/CMakeCCompiler.cmake
+D:/winflexbison/CMakeFiles/3.23.0-rc4/CMakeCXXCompiler.cmake
+D:/winflexbison/CMakeFiles/3.23.0-rc4/CMakeRCCompiler.cmake
+D:/winflexbison/CMakeFiles/3.23.0-rc4/CMakeSystem.cmake
+D:/winflexbison/CMakeLists.txt
diff --git a/CMakeFiles/generate.stamp.list b/CMakeFiles/generate.stamp.list
new file mode 100644
index 0000000..2538a73
--- /dev/null
+++ b/CMakeFiles/generate.stamp.list
@@ -0,0 +1,4 @@
+D:/winflexbison/CMakeFiles/generate.stamp
+D:/winflexbison/common/CMakeFiles/generate.stamp
+D:/winflexbison/flex/CMakeFiles/generate.stamp
+D:/winflexbison/bison/CMakeFiles/generate.stamp
diff --git a/CPackConfig.cmake b/CPackConfig.cmake
new file mode 100644
index 0000000..2c0bfe5
--- /dev/null
+++ b/CPackConfig.cmake
@@ -0,0 +1,65 @@
+# This file will be configured to contain variables for CPack. These variables
+# should be set in the CMake list file of the project before CPack module is
+# included. The list of available CPACK_xxx variables and their associated
+# documentation may be obtained using
+# cpack --help-variable-list
+#
+# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
+# and some are specific to a generator
+# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
+# usually begin with CPACK__xxxx.
+
+
+set(CPACK_ARCHIVE_COMPONENT_INSTALL "OFF")
+set(CPACK_BUILD_SOURCE_DIRS "D:/winflexbison;D:/winflexbison")
+set(CPACK_CMAKE_GENERATOR "Visual Studio 17 2022")
+set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
+set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
+set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericDescription.txt")
+set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "winflexbison built using CMake")
+set(CPACK_GENERATOR "ZIP")
+set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY "OFF")
+set(CPACK_INSTALL_CMAKE_PROJECTS "D:/winflexbison;winflexbison;ALL;/")
+set(CPACK_INSTALL_PREFIX "C:/Program Files (x86)/winflexbison")
+set(CPACK_MODULE_PATH "")
+set(CPACK_MONOLITHIC_INSTALL "ON")
+set(CPACK_NSIS_DISPLAY_NAME "winflexbison master")
+set(CPACK_NSIS_INSTALLER_ICON_CODE "")
+set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
+set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64")
+set(CPACK_NSIS_PACKAGE_NAME "winflexbison master")
+set(CPACK_NSIS_UNINSTALL_NAME "Uninstall")
+set(CPACK_OUTPUT_CONFIG_FILE "D:/winflexbison/CPackConfig.cmake")
+set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
+set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericDescription.txt")
+set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Winflexbison - Flex and Bison for Windows")
+set(CPACK_PACKAGE_FILE_NAME "win_flex_bison-master")
+set(CPACK_PACKAGE_INSTALL_DIRECTORY "winflexbison master")
+set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "winflexbison master")
+set(CPACK_PACKAGE_NAME "winflexbison")
+set(CPACK_PACKAGE_RELOCATABLE "true")
+set(CPACK_PACKAGE_VENDOR "Humanity")
+set(CPACK_PACKAGE_VERSION "master")
+set(CPACK_PACKAGE_VERSION_MAJOR "0")
+set(CPACK_PACKAGE_VERSION_MINOR "1")
+set(CPACK_PACKAGE_VERSION_PATCH "1")
+set(CPACK_RESOURCE_FILE_LICENSE "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericLicense.txt")
+set(CPACK_RESOURCE_FILE_README "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericDescription.txt")
+set(CPACK_RESOURCE_FILE_WELCOME "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericWelcome.txt")
+set(CPACK_SET_DESTDIR "OFF")
+set(CPACK_SOURCE_7Z "ON")
+set(CPACK_SOURCE_GENERATOR "7Z;ZIP")
+set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "D:/winflexbison/CPackSourceConfig.cmake")
+set(CPACK_SOURCE_ZIP "ON")
+set(CPACK_SYSTEM_NAME "win64")
+set(CPACK_THREADS "1")
+set(CPACK_TOPLEVEL_TAG "win64")
+set(CPACK_WIX_SIZEOF_VOID_P "8")
+
+if(NOT CPACK_PROPERTIES_FILE)
+ set(CPACK_PROPERTIES_FILE "D:/winflexbison/CPackProperties.cmake")
+endif()
+
+if(EXISTS ${CPACK_PROPERTIES_FILE})
+ include(${CPACK_PROPERTIES_FILE})
+endif()
diff --git a/CPackSourceConfig.cmake b/CPackSourceConfig.cmake
new file mode 100644
index 0000000..6a6105a
--- /dev/null
+++ b/CPackSourceConfig.cmake
@@ -0,0 +1,74 @@
+# This file will be configured to contain variables for CPack. These variables
+# should be set in the CMake list file of the project before CPack module is
+# included. The list of available CPACK_xxx variables and their associated
+# documentation may be obtained using
+# cpack --help-variable-list
+#
+# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
+# and some are specific to a generator
+# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
+# usually begin with CPACK__xxxx.
+
+
+set(CPACK_ARCHIVE_COMPONENT_INSTALL "OFF")
+set(CPACK_BUILD_SOURCE_DIRS "D:/winflexbison;D:/winflexbison")
+set(CPACK_CMAKE_GENERATOR "Visual Studio 17 2022")
+set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
+set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
+set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericDescription.txt")
+set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "winflexbison built using CMake")
+set(CPACK_GENERATOR "7Z;ZIP")
+set(CPACK_GENERATOR "7Z;ZIP")
+set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#")
+set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY "OFF")
+set(CPACK_INSTALLED_DIRECTORIES "D:/winflexbison;/")
+set(CPACK_INSTALL_CMAKE_PROJECTS "")
+set(CPACK_INSTALL_PREFIX "C:/Program Files (x86)/winflexbison")
+set(CPACK_MODULE_PATH "")
+set(CPACK_MONOLITHIC_INSTALL "ON")
+set(CPACK_NSIS_DISPLAY_NAME "winflexbison master")
+set(CPACK_NSIS_INSTALLER_ICON_CODE "")
+set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
+set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64")
+set(CPACK_NSIS_PACKAGE_NAME "winflexbison master")
+set(CPACK_NSIS_UNINSTALL_NAME "Uninstall")
+set(CPACK_OUTPUT_CONFIG_FILE "D:/winflexbison/CPackConfig.cmake")
+set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
+set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericDescription.txt")
+set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Winflexbison - Flex and Bison for Windows")
+set(CPACK_PACKAGE_FILE_NAME "winflexbison-master-Source")
+set(CPACK_PACKAGE_INSTALL_DIRECTORY "winflexbison master")
+set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "winflexbison master")
+set(CPACK_PACKAGE_NAME "winflexbison")
+set(CPACK_PACKAGE_RELOCATABLE "true")
+set(CPACK_PACKAGE_VENDOR "Humanity")
+set(CPACK_PACKAGE_VERSION "master")
+set(CPACK_PACKAGE_VERSION_MAJOR "0")
+set(CPACK_PACKAGE_VERSION_MINOR "1")
+set(CPACK_PACKAGE_VERSION_PATCH "1")
+set(CPACK_RESOURCE_FILE_LICENSE "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericLicense.txt")
+set(CPACK_RESOURCE_FILE_README "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericDescription.txt")
+set(CPACK_RESOURCE_FILE_WELCOME "C:/Program Files/CMake/share/cmake-3.23/Templates/CPack.GenericWelcome.txt")
+set(CPACK_RPM_PACKAGE_SOURCES "ON")
+set(CPACK_SET_DESTDIR "OFF")
+set(CPACK_SOURCE_7Z "ON")
+set(CPACK_SOURCE_GENERATOR "7Z;ZIP")
+set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#")
+set(CPACK_SOURCE_INSTALLED_DIRECTORIES "D:/winflexbison;/")
+set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "D:/winflexbison/CPackSourceConfig.cmake")
+set(CPACK_SOURCE_PACKAGE_FILE_NAME "winflexbison-master-Source")
+set(CPACK_SOURCE_TOPLEVEL_TAG "win64-Source")
+set(CPACK_SOURCE_ZIP "ON")
+set(CPACK_STRIP_FILES "")
+set(CPACK_SYSTEM_NAME "win64")
+set(CPACK_THREADS "1")
+set(CPACK_TOPLEVEL_TAG "win64-Source")
+set(CPACK_WIX_SIZEOF_VOID_P "8")
+
+if(NOT CPACK_PROPERTIES_FILE)
+ set(CPACK_PROPERTIES_FILE "D:/winflexbison/CPackProperties.cmake")
+endif()
+
+if(EXISTS ${CPACK_PROPERTIES_FILE})
+ include(${CPACK_PROPERTIES_FILE})
+endif()
diff --git a/INSTALL.vcxproj b/INSTALL.vcxproj
new file mode 100644
index 0000000..67ea468
--- /dev/null
+++ b/INSTALL.vcxproj
@@ -0,0 +1,204 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\INSTALL_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/INSTALL.vcxproj.filters b/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..3a9c98f
--- /dev/null
+++ b/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/PACKAGE.vcxproj b/PACKAGE.vcxproj
new file mode 100644
index 0000000..9b79d45
--- /dev/null
+++ b/PACKAGE.vcxproj
@@ -0,0 +1,216 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ PACKAGE
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PACKAGE.vcxproj.filters b/PACKAGE.vcxproj.filters
new file mode 100644
index 0000000..724fddd
--- /dev/null
+++ b/PACKAGE.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/ZERO_CHECK.vcxproj b/ZERO_CHECK.vcxproj
new file mode 100644
index 0000000..478e01f
--- /dev/null
+++ b/ZERO_CHECK.vcxproj
@@ -0,0 +1,174 @@
+
+
+
+ x64
+
+
+ false
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ ZERO_CHECK
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Always
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file D:/winflexbison/winflexbison.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitIncludeInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseLibraryArchitecture.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPack.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPackComponent.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\FujitsuClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IntelLLVM-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVHPC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.23\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.23\Templates\CPackConfig.cmake.in;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCXXCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeRCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeSystem.cmake;D:\winflexbison\CMakeLists.txt;D:\winflexbison\bison\CMakeLists.txt;D:\winflexbison\common\CMakeLists.txt;D:\winflexbison\flex\CMakeLists.txt;%(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\generate.stamp;D:\winflexbison\common\CMakeFiles\generate.stamp;D:\winflexbison\flex\CMakeFiles\generate.stamp;D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file D:/winflexbison/winflexbison.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitIncludeInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseLibraryArchitecture.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPack.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPackComponent.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\FujitsuClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IntelLLVM-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVHPC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.23\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.23\Templates\CPackConfig.cmake.in;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCXXCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeRCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeSystem.cmake;D:\winflexbison\CMakeLists.txt;D:\winflexbison\bison\CMakeLists.txt;D:\winflexbison\common\CMakeLists.txt;D:\winflexbison\flex\CMakeLists.txt;%(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\generate.stamp;D:\winflexbison\common\CMakeFiles\generate.stamp;D:\winflexbison\flex\CMakeFiles\generate.stamp;D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file D:/winflexbison/winflexbison.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitIncludeInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseLibraryArchitecture.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPack.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPackComponent.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\FujitsuClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IntelLLVM-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVHPC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.23\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.23\Templates\CPackConfig.cmake.in;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCXXCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeRCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeSystem.cmake;D:\winflexbison\CMakeLists.txt;D:\winflexbison\bison\CMakeLists.txt;D:\winflexbison\common\CMakeLists.txt;D:\winflexbison\flex\CMakeLists.txt;%(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\generate.stamp;D:\winflexbison\common\CMakeFiles\generate.stamp;D:\winflexbison\flex\CMakeFiles\generate.stamp;D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Checking Build System
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file D:/winflexbison/winflexbison.sln
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitIncludeInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeParseLibraryArchitecture.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPack.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CPackComponent.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\ARMClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\FujitsuClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IBMClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\IntelLLVM-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\LCC-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVHPC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\XLClang-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.23\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.23\Templates\CPackConfig.cmake.in;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeCXXCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeRCCompiler.cmake;D:\winflexbison\CMakeFiles\3.23.0-rc4\CMakeSystem.cmake;D:\winflexbison\CMakeLists.txt;D:\winflexbison\bison\CMakeLists.txt;D:\winflexbison\common\CMakeLists.txt;D:\winflexbison\flex\CMakeLists.txt;%(AdditionalInputs)
+ D:\winflexbison\CMakeFiles\generate.stamp;D:\winflexbison\common\CMakeFiles\generate.stamp;D:\winflexbison\flex\CMakeFiles\generate.stamp;D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ZERO_CHECK.vcxproj.filters b/ZERO_CHECK.vcxproj.filters
new file mode 100644
index 0000000..034e1b1
--- /dev/null
+++ b/ZERO_CHECK.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/bison/ALL_BUILD.vcxproj b/bison/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..9f3f91c
--- /dev/null
+++ b/bison/ALL_BUILD.vcxproj
@@ -0,0 +1,188 @@
+
+
+
+ x64
+
+
+ false
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ ALL_BUILD
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {C9B72576-A174-320B-B833-C85152DF7E14}
+ win_bison
+
+
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}
+ y
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bison/ALL_BUILD.vcxproj.filters b/bison/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..2ab02ee
--- /dev/null
+++ b/bison/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/bison/CMakeFiles/generate.stamp b/bison/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/bison/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/bison/CMakeFiles/generate.stamp.depend b/bison/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..d4e7cb3
--- /dev/null
+++ b/bison/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/winflexbison/bison/CMakeLists.txt
diff --git a/bison/INSTALL.vcxproj b/bison/INSTALL.vcxproj
new file mode 100644
index 0000000..1b8c91e
--- /dev/null
+++ b/bison/INSTALL.vcxproj
@@ -0,0 +1,204 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\INSTALL_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bison/INSTALL.vcxproj.filters b/bison/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..693b685
--- /dev/null
+++ b/bison/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/bison/PACKAGE.vcxproj b/bison/PACKAGE.vcxproj
new file mode 100644
index 0000000..ac0b4b0
--- /dev/null
+++ b/bison/PACKAGE.vcxproj
@@ -0,0 +1,216 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ PACKAGE
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\PACKAGE_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bison/PACKAGE.vcxproj.filters b/bison/PACKAGE.vcxproj.filters
new file mode 100644
index 0000000..d52d529
--- /dev/null
+++ b/bison/PACKAGE.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/bison/cmake_install.cmake b/bison/cmake_install.cmake
new file mode 100644
index 0000000..f205e91
--- /dev/null
+++ b/bison/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/winflexbison/bison
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/winflexbison")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/bison/win_bison.sln b/bison/win_bison.sln
new file mode 100644
index 0000000..419bed6
--- /dev/null
+++ b/bison/win_bison.sln
@@ -0,0 +1,105 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {C9B72576-A174-320B-B833-C85152DF7E14} = {C9B72576-A174-320B-B833-C85152DF7E14}
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B} = {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PACKAGE", "PACKAGE.vcxproj", "{3ED8E858-F15E-3B13-BE69-BFDF9D63E168}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "..\\ZERO_CHECK.vcxproj", "{A4935C9F-62F8-3CF8-9EB5-442349923DB2}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win_bison", "win_bison.vcxproj", "{C9B72576-A174-320B-B833-C85152DF7E14}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2} = {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winflexbison_common", "..\common\winflexbison_common.vcxproj", "{DD225102-0724-3D42-8FF5-846CF53B9BA2}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "y", "y.vcxproj", "{91772CDA-0C57-3F00-A594-62BAEAFD6E3B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ MinSizeRel|x64 = MinSizeRel|x64
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.ActiveCfg = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.Build.0 = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.ActiveCfg = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.Build.0 = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Debug|x64.ActiveCfg = Debug|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Release|x64.ActiveCfg = Release|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Debug|x64.ActiveCfg = Debug|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Release|x64.ActiveCfg = Release|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.ActiveCfg = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.Build.0 = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.ActiveCfg = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.Build.0 = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Debug|x64.ActiveCfg = Debug|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Debug|x64.Build.0 = Debug|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Release|x64.ActiveCfg = Release|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Release|x64.Build.0 = Release|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.ActiveCfg = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.Build.0 = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.ActiveCfg = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.Build.0 = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Debug|x64.ActiveCfg = Debug|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Debug|x64.Build.0 = Debug|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Release|x64.ActiveCfg = Release|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Release|x64.Build.0 = Release|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {07937CBE-F42E-353D-9BA6-87520FE19DE8}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/bison/win_bison.vcxproj b/bison/win_bison.vcxproj
new file mode 100644
index 0000000..6dd5399
--- /dev/null
+++ b/bison/win_bison.vcxproj
@@ -0,0 +1,475 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {C9B72576-A174-320B-B833-C85152DF7E14}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ win_bison
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v143
+
+
+ Application
+ MultiByte
+ v143
+
+
+ Application
+ MultiByte
+ v143
+
+
+ Application
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\winflexbison\bin\Debug\
+ win_bison.dir\Debug\
+ win_bison
+ .exe
+ true
+ true
+ D:\winflexbison\bin\Release\
+ win_bison.dir\Release\
+ win_bison
+ .exe
+ false
+ true
+ D:\winflexbison\bison\MinSizeRel\
+ win_bison.dir\MinSizeRel\
+ win_bison
+ .exe
+ false
+ true
+ D:\winflexbison\bison\RelWithDebInfo\
+ win_bison.dir\RelWithDebInfo\
+ win_bison
+ .exe
+ true
+ true
+
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+
+
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Debug"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Debug\"
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory D:/winflexbison/bison/data D:/winflexbison/bin/Debug/data
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ ..\common\Debug\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/bison/Debug/win_bison.lib
+ D:/winflexbison/bin/Debug/win_bison.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Release"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Release\"
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory D:/winflexbison/bison/data D:/winflexbison/bin/Release/data
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ ..\common\Release\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/bison/Release/win_bison.lib
+ D:/winflexbison/bin/Release/win_bison.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="MinSizeRel"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"MinSizeRel\"
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory D:/winflexbison/bison/data D:/winflexbison/bison/MinSizeRel/data
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ ..\common\MinSizeRel\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/bison/MinSizeRel/win_bison.lib
+ D:/winflexbison/bison/MinSizeRel/win_bison.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ ProgramDatabase
+
+
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="RelWithDebInfo"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"RelWithDebInfo\"
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;D:\winflexbison\bison;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -E copy_directory D:/winflexbison/bison/data D:/winflexbison/bison/RelWithDebInfo/data
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+ ..\common\RelWithDebInfo\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/bison/RelWithDebInfo/win_bison.lib
+ D:/winflexbison/bison/RelWithDebInfo/win_bison.pdb
+ Console
+
+
+ false
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ winflexbison_common
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bison/win_bison.vcxproj.filters b/bison/win_bison.vcxproj.filters
new file mode 100644
index 0000000..097b0fc
--- /dev/null
+++ b/bison/win_bison.vcxproj.filters
@@ -0,0 +1,291 @@
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+
+
+
+ {45072AC8-810B-32C8-ACA6-157EE3480F8B}
+
+
+ {9FC37CC4-790A-3787-8444-B60BBC7BBF58}
+
+
+
diff --git a/bison/y.vcxproj b/bison/y.vcxproj
new file mode 100644
index 0000000..88d7b45
--- /dev/null
+++ b/bison/y.vcxproj
@@ -0,0 +1,286 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ y
+ NoUpgrade
+
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\winflexbison\bison\Debug\
+ y.dir\Debug\
+ y
+ .lib
+ D:\winflexbison\bison\Release\
+ y.dir\Release\
+ y
+ .lib
+ D:\winflexbison\bison\MinSizeRel\
+ y.dir\MinSizeRel\
+ y
+ .lib
+ D:\winflexbison\bison\RelWithDebInfo\
+ y.dir\RelWithDebInfo\
+ y
+ .lib
+
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+
+
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Debug"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Debug\"
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Release"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Release\"
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="MinSizeRel"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"MinSizeRel\"
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ ProgramDatabase
+
+
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="RelWithDebInfo"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"RelWithDebInfo\"
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\bison\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/bison/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/bison/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\bison\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bison/y.vcxproj.filters b/bison/y.vcxproj.filters
new file mode 100644
index 0000000..da40425
--- /dev/null
+++ b/bison/y.vcxproj.filters
@@ -0,0 +1,19 @@
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+
+
+
+
+
+ {9FC37CC4-790A-3787-8444-B60BBC7BBF58}
+
+
+
diff --git a/cmake_install.cmake b/cmake_install.cmake
new file mode 100644
index 0000000..dc4f112
--- /dev/null
+++ b/cmake_install.cmake
@@ -0,0 +1,84 @@
+# Install script for directory: D:/winflexbison
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/winflexbison")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./" TYPE DIRECTORY FILES "D:/winflexbison/bin/Release/")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./custom_build_rules/" TYPE DIRECTORY FILES "D:/winflexbison/custom_build_rules/")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./data/" TYPE DIRECTORY FILES "D:/winflexbison/bison/data/")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "D:/winflexbison/flex/src/FlexLexer.h")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "D:/winflexbison/changelog.md")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "D:/winflexbison/COPYING")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "D:/winflexbison/COPYING.DOC")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "D:/winflexbison/README.md")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("D:/winflexbison/common/cmake_install.cmake")
+ include("D:/winflexbison/flex/cmake_install.cmake")
+ include("D:/winflexbison/bison/cmake_install.cmake")
+
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+file(WRITE "D:/winflexbison/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
diff --git a/common/ALL_BUILD.vcxproj b/common/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..f17dafd
--- /dev/null
+++ b/common/ALL_BUILD.vcxproj
@@ -0,0 +1,184 @@
+
+
+
+ x64
+
+
+ false
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ ALL_BUILD
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ winflexbison_common
+
+
+
+
+
+
\ No newline at end of file
diff --git a/common/ALL_BUILD.vcxproj.filters b/common/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..ff77557
--- /dev/null
+++ b/common/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/common/CMakeFiles/generate.stamp b/common/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/common/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/common/CMakeFiles/generate.stamp.depend b/common/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..efd9a6f
--- /dev/null
+++ b/common/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/winflexbison/common/CMakeLists.txt
diff --git a/common/INSTALL.vcxproj b/common/INSTALL.vcxproj
new file mode 100644
index 0000000..bfa3320
--- /dev/null
+++ b/common/INSTALL.vcxproj
@@ -0,0 +1,204 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\INSTALL_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/common/INSTALL.vcxproj.filters b/common/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..ab17922
--- /dev/null
+++ b/common/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/common/PACKAGE.vcxproj b/common/PACKAGE.vcxproj
new file mode 100644
index 0000000..2496d08
--- /dev/null
+++ b/common/PACKAGE.vcxproj
@@ -0,0 +1,216 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ PACKAGE
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\PACKAGE_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/common/PACKAGE.vcxproj.filters b/common/PACKAGE.vcxproj.filters
new file mode 100644
index 0000000..0d13a3f
--- /dev/null
+++ b/common/PACKAGE.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/common/cmake_install.cmake b/common/cmake_install.cmake
new file mode 100644
index 0000000..b9cfe02
--- /dev/null
+++ b/common/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/winflexbison/common
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/winflexbison")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/common/winflexbison_common.sln b/common/winflexbison_common.sln
new file mode 100644
index 0000000..9236367
--- /dev/null
+++ b/common/winflexbison_common.sln
@@ -0,0 +1,77 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2} = {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PACKAGE", "PACKAGE.vcxproj", "{3ED8E858-F15E-3B13-BE69-BFDF9D63E168}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "..\\ZERO_CHECK.vcxproj", "{A4935C9F-62F8-3CF8-9EB5-442349923DB2}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winflexbison_common", "winflexbison_common.vcxproj", "{DD225102-0724-3D42-8FF5-846CF53B9BA2}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ MinSizeRel|x64 = MinSizeRel|x64
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.ActiveCfg = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.Build.0 = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.ActiveCfg = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.Build.0 = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Debug|x64.ActiveCfg = Debug|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Release|x64.ActiveCfg = Release|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Debug|x64.ActiveCfg = Debug|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Release|x64.ActiveCfg = Release|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.ActiveCfg = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.Build.0 = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.ActiveCfg = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.Build.0 = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.ActiveCfg = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.Build.0 = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.ActiveCfg = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.Build.0 = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {ABFECD0B-B1E6-3A51-8F4D-A99107EA5441}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/common/winflexbison_common.vcxproj b/common/winflexbison_common.vcxproj
new file mode 100644
index 0000000..bd098f6
--- /dev/null
+++ b/common/winflexbison_common.vcxproj
@@ -0,0 +1,534 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ winflexbison_common
+ NoUpgrade
+
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\winflexbison\common\Debug\
+ winflexbison_common.dir\Debug\
+ winflexbison_common
+ .lib
+ D:\winflexbison\common\Release\
+ winflexbison_common.dir\Release\
+ winflexbison_common
+ .lib
+ D:\winflexbison\common\MinSizeRel\
+ winflexbison_common.dir\MinSizeRel\
+ winflexbison_common
+ .lib
+ D:\winflexbison\common\RelWithDebInfo\
+ winflexbison_common.dir\RelWithDebInfo\
+ winflexbison_common
+ .lib
+
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+
+
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR="Debug"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR=\"Debug\"
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR="Release"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR=\"Release\"
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR="MinSizeRel"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR=\"MinSizeRel\"
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ ProgramDatabase
+
+
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR="RelWithDebInfo"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;_LIB;CMAKE_INTDIR=\"RelWithDebInfo\"
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/common/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/common/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\common\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/common/winflexbison_common.vcxproj.filters b/common/winflexbison_common.vcxproj.filters
new file mode 100644
index 0000000..9a81047
--- /dev/null
+++ b/common/winflexbison_common.vcxproj.filters
@@ -0,0 +1,768 @@
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+
+
+
+ {45072AC8-810B-32C8-ACA6-157EE3480F8B}
+
+
+ {9FC37CC4-790A-3787-8444-B60BBC7BBF58}
+
+
+
diff --git a/flex/ALL_BUILD.vcxproj b/flex/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..9ac2050
--- /dev/null
+++ b/flex/ALL_BUILD.vcxproj
@@ -0,0 +1,188 @@
+
+
+
+ x64
+
+
+ false
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ ALL_BUILD
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}
+ fl
+
+
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}
+ win_flex
+
+
+
+
+
+
\ No newline at end of file
diff --git a/flex/ALL_BUILD.vcxproj.filters b/flex/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..abac6ce
--- /dev/null
+++ b/flex/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/flex/CMakeFiles/generate.stamp b/flex/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/flex/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/flex/CMakeFiles/generate.stamp.depend b/flex/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..fd0f86f
--- /dev/null
+++ b/flex/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/winflexbison/flex/CMakeLists.txt
diff --git a/flex/INSTALL.vcxproj b/flex/INSTALL.vcxproj
new file mode 100644
index 0000000..f536b49
--- /dev/null
+++ b/flex/INSTALL.vcxproj
@@ -0,0 +1,204 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ Always
+
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\INSTALL_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\INSTALL_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/flex/INSTALL.vcxproj.filters b/flex/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..f17deb9
--- /dev/null
+++ b/flex/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/flex/PACKAGE.vcxproj b/flex/PACKAGE.vcxproj
new file mode 100644
index 0000000..ca90135
--- /dev/null
+++ b/flex/PACKAGE.vcxproj
@@ -0,0 +1,216 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ PACKAGE
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+ Utility
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd D:\winflexbison
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"C:\Program Files\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\PACKAGE_force
+ false
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\PACKAGE_force
+ false
+ false
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/flex/PACKAGE.vcxproj.filters b/flex/PACKAGE.vcxproj.filters
new file mode 100644
index 0000000..6403b6e
--- /dev/null
+++ b/flex/PACKAGE.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {E92C022B-F728-305B-88DB-5D3CC34AB085}
+
+
+
diff --git a/flex/cmake_install.cmake b/flex/cmake_install.cmake
new file mode 100644
index 0000000..0bf2abe
--- /dev/null
+++ b/flex/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/winflexbison/flex
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/winflexbison")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/flex/fl.vcxproj b/flex/fl.vcxproj
new file mode 100644
index 0000000..0853c60
--- /dev/null
+++ b/flex/fl.vcxproj
@@ -0,0 +1,286 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ fl
+ NoUpgrade
+
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+ StaticLibrary
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\winflexbison\flex\Debug\
+ fl.dir\Debug\
+ fl
+ .lib
+ D:\winflexbison\flex\Release\
+ fl.dir\Release\
+ fl
+ .lib
+ D:\winflexbison\flex\MinSizeRel\
+ fl.dir\MinSizeRel\
+ fl
+ .lib
+ D:\winflexbison\flex\RelWithDebInfo\
+ fl.dir\RelWithDebInfo\
+ fl
+ .lib
+
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+
+
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Debug"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Debug\"
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Release"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Release\"
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="MinSizeRel"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"MinSizeRel\"
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ ProgramDatabase
+
+
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="RelWithDebInfo"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"RelWithDebInfo\"
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ %(AdditionalOptions) /machine:x64
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/flex/fl.vcxproj.filters b/flex/fl.vcxproj.filters
new file mode 100644
index 0000000..7784c31
--- /dev/null
+++ b/flex/fl.vcxproj.filters
@@ -0,0 +1,19 @@
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+
+
+
+
+
+ {9FC37CC4-790A-3787-8444-B60BBC7BBF58}
+
+
+
diff --git a/flex/win_flex.sln b/flex/win_flex.sln
new file mode 100644
index 0000000..3426cc1
--- /dev/null
+++ b/flex/win_flex.sln
@@ -0,0 +1,105 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3} = {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A} = {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PACKAGE", "PACKAGE.vcxproj", "{3ED8E858-F15E-3B13-BE69-BFDF9D63E168}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "..\\ZERO_CHECK.vcxproj", "{A4935C9F-62F8-3CF8-9EB5-442349923DB2}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fl", "fl.vcxproj", "{5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win_flex", "win_flex.vcxproj", "{D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2} = {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winflexbison_common", "..\common\winflexbison_common.vcxproj", "{DD225102-0724-3D42-8FF5-846CF53B9BA2}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ MinSizeRel|x64 = MinSizeRel|x64
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.ActiveCfg = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.Build.0 = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.ActiveCfg = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.Build.0 = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Debug|x64.ActiveCfg = Debug|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Release|x64.ActiveCfg = Release|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Debug|x64.ActiveCfg = Debug|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Release|x64.ActiveCfg = Release|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.ActiveCfg = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.Build.0 = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.ActiveCfg = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.Build.0 = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Debug|x64.ActiveCfg = Debug|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Debug|x64.Build.0 = Debug|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Release|x64.ActiveCfg = Release|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Release|x64.Build.0 = Release|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Debug|x64.ActiveCfg = Debug|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Debug|x64.Build.0 = Debug|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Release|x64.ActiveCfg = Release|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Release|x64.Build.0 = Release|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.ActiveCfg = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.Build.0 = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.ActiveCfg = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.Build.0 = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {D79ABF6C-FD02-3563-B927-B4024B08279B}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/flex/win_flex.vcxproj b/flex/win_flex.vcxproj
new file mode 100644
index 0000000..65e84e7
--- /dev/null
+++ b/flex/win_flex.vcxproj
@@ -0,0 +1,366 @@
+
+
+
+ x64
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+ MinSizeRel
+ x64
+
+
+ RelWithDebInfo
+ x64
+
+
+
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}
+ Win32Proj
+ 10.0.22581.0
+ x64
+ win_flex
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v143
+
+
+ Application
+ MultiByte
+ v143
+
+
+ Application
+ MultiByte
+ v143
+
+
+ Application
+ MultiByte
+ v143
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\winflexbison\bin\Debug\
+ win_flex.dir\Debug\
+ win_flex
+ .exe
+ true
+ true
+ D:\winflexbison\bin\Release\
+ win_flex.dir\Release\
+ win_flex
+ .exe
+ false
+ true
+ D:\winflexbison\flex\MinSizeRel\
+ win_flex.dir\MinSizeRel\
+ win_flex
+ .exe
+ false
+ true
+ D:\winflexbison\flex\RelWithDebInfo\
+ win_flex.dir\RelWithDebInfo\
+ win_flex
+ .exe
+ true
+ true
+
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+
+
+ Disabled
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Debug"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Debug\"
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\common\Debug\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/flex/Debug/win_flex.lib
+ D:/winflexbison/bin/Debug/win_flex.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ AnySuitable
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="Release"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"Release\"
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\common\Release\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/flex/Release/win_flex.lib
+ D:/winflexbison/bin/Release/win_flex.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+
+
+ OnlyExplicitInline
+ MinSpace
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="MinSizeRel"
+ $(IntDir)
+
+
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"MinSizeRel\"
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\common\MinSizeRel\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/flex/MinSizeRel/win_flex.lib
+ D:/winflexbison/flex/MinSizeRel/win_flex.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /source-charset:utf-8
+ $(IntDir)
+ ProgramDatabase
+
+
+ OnlyExplicitInline
+ MaxSpeed
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level3
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR="RelWithDebInfo"
+ $(IntDir)
+
+
+ %(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;inline=__inline;restrict=__restrict;__extension__;CMAKE_INTDIR=\"RelWithDebInfo\"
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+
+
+ D:\winflexbison\flex\src;D:\winflexbison\common\misc;D:\winflexbison\common\m4;D:\winflexbison\common\m4\lib;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\common\RelWithDebInfo\winflexbison_common.lib;kernel32.lib;user32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/winflexbison/flex/RelWithDebInfo/win_flex.lib
+ D:/winflexbison/flex/RelWithDebInfo/win_flex.pdb
+ Console
+
+
+ false
+
+
+
+
+ Always
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+ Building Custom Rule D:/winflexbison/flex/CMakeLists.txt
+ setlocal
+"C:\Program Files\CMake\bin\cmake.exe" -SD:/winflexbison -BD:/winflexbison --check-stamp-file D:/winflexbison/flex/CMakeFiles/generate.stamp
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\winflexbison\flex\CMakeFiles\generate.stamp
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ ZERO_CHECK
+ false
+ Never
+
+
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ winflexbison_common
+
+
+
+
+
+
\ No newline at end of file
diff --git a/flex/win_flex.vcxproj.filters b/flex/win_flex.vcxproj.filters
new file mode 100644
index 0000000..bbb54c1
--- /dev/null
+++ b/flex/win_flex.vcxproj.filters
@@ -0,0 +1,108 @@
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+
+
+
+ {45072AC8-810B-32C8-ACA6-157EE3480F8B}
+
+
+ {9FC37CC4-790A-3787-8444-B60BBC7BBF58}
+
+
+
diff --git a/winflexbison.sln b/winflexbison.sln
new file mode 100644
index 0000000..8ca9217
--- /dev/null
+++ b/winflexbison.sln
@@ -0,0 +1,135 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3} = {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}
+ {C9B72576-A174-320B-B833-C85152DF7E14} = {C9B72576-A174-320B-B833-C85152DF7E14}
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A} = {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2} = {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B} = {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PACKAGE", "PACKAGE.vcxproj", "{3ED8E858-F15E-3B13-BE69-BFDF9D63E168}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0} = {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{A4935C9F-62F8-3CF8-9EB5-442349923DB2}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fl", "flex\fl.vcxproj", "{5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win_bison", "bison\win_bison.vcxproj", "{C9B72576-A174-320B-B833-C85152DF7E14}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2} = {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win_flex", "flex\win_flex.vcxproj", "{D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2} = {DD225102-0724-3D42-8FF5-846CF53B9BA2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winflexbison_common", "common\winflexbison_common.vcxproj", "{DD225102-0724-3D42-8FF5-846CF53B9BA2}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "y", "bison\y.vcxproj", "{91772CDA-0C57-3F00-A594-62BAEAFD6E3B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2} = {A4935C9F-62F8-3CF8-9EB5-442349923DB2}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ MinSizeRel|x64 = MinSizeRel|x64
+ RelWithDebInfo|x64 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.ActiveCfg = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Debug|x64.Build.0 = Debug|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.ActiveCfg = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.Release|x64.Build.0 = Release|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A436E7B0-A3E8-30D6-86B7-F3EA31BF54D0}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Debug|x64.ActiveCfg = Debug|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.Release|x64.ActiveCfg = Release|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {1F5E5ACE-40E9-3AFE-BBF2-FFCC29F3343D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Debug|x64.ActiveCfg = Debug|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.Release|x64.ActiveCfg = Release|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {3ED8E858-F15E-3B13-BE69-BFDF9D63E168}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.ActiveCfg = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Debug|x64.Build.0 = Debug|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.ActiveCfg = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.Release|x64.Build.0 = Release|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {A4935C9F-62F8-3CF8-9EB5-442349923DB2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Debug|x64.ActiveCfg = Debug|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Debug|x64.Build.0 = Debug|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Release|x64.ActiveCfg = Release|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.Release|x64.Build.0 = Release|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {5E47D4DE-B1D7-334B-A3D8-CC2605810EB3}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Debug|x64.ActiveCfg = Debug|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Debug|x64.Build.0 = Debug|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Release|x64.ActiveCfg = Release|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.Release|x64.Build.0 = Release|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {C9B72576-A174-320B-B833-C85152DF7E14}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Debug|x64.ActiveCfg = Debug|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Debug|x64.Build.0 = Debug|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Release|x64.ActiveCfg = Release|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.Release|x64.Build.0 = Release|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {D1FAA1A5-3930-3DED-8165-9294DCC7FA2A}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.ActiveCfg = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Debug|x64.Build.0 = Debug|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.ActiveCfg = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.Release|x64.Build.0 = Release|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {DD225102-0724-3D42-8FF5-846CF53B9BA2}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Debug|x64.ActiveCfg = Debug|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Debug|x64.Build.0 = Debug|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Release|x64.ActiveCfg = Release|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.Release|x64.Build.0 = Release|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
+ {91772CDA-0C57-3F00-A594-62BAEAFD6E3B}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {8D304F0E-922C-3567-9686-DA6C4039D935}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
From 6bde31ed9222ba435f8649ad5d9d9316a612da30 Mon Sep 17 00:00:00 2001
From: Northy1985 <100786104+Northy1985@users.noreply.github.com>
Date: Tue, 5 Apr 2022 22:15:32 +0100
Subject: [PATCH 2/2] setup update
---
ALL_BUILD.vcxproj | 2 +
.../win64/ZIP/win_flex_bison-master.zip | Bin 0 -> 1012809 bytes
.../win64/ZIP/win_flex_bison-master/COPYING | 674 ++++
.../ZIP/win_flex_bison-master/COPYING.DOC | 451 +++
.../ZIP/win_flex_bison-master/FlexLexer.h | 220 +
.../win64/ZIP/win_flex_bison-master/README.md | 34 +
.../ZIP/win_flex_bison-master/changelog.md | 166 +
.../custom_build_rules/README.md | 173 +
.../custom_build_rules/docs/1.png | Bin 0 -> 31654 bytes
.../custom_build_rules/docs/2.png | Bin 0 -> 11445 bytes
.../custom_build_rules/docs/3.png | Bin 0 -> 7316 bytes
.../custom_build_rules/docs/4.png | Bin 0 -> 12213 bytes
.../custom_build_rules/docs/5.png | Bin 0 -> 11534 bytes
.../custom_build_rules/docs/6.png | Bin 0 -> 15611 bytes
.../docs/BisonProperties.png | Bin 0 -> 27186 bytes
.../docs/FlexProperties.png | Bin 0 -> 26767 bytes
.../custom_build_rules/docs/Flex_debuging.png | Bin 0 -> 27219 bytes
.../custom_build_rules/docs/Properties.png | Bin 0 -> 31446 bytes
.../custom_build_rules/docs/Verbosity.png | Bin 0 -> 29722 bytes
.../win_bison_custom_build.props | 23 +
.../win_bison_custom_build.targets | 91 +
.../win_bison_only/win_bison_custom_build.xml | 281 ++
.../win_flex_bison_custom_build.props | 43 +
.../win_flex_bison_custom_build.targets | 178 +
.../win_flex_bison_custom_build.xml | 521 +++
.../win_flex_only/win_flex_custom_build.props | 23 +
.../win_flex_custom_build.targets | 94 +
.../win_flex_only/win_flex_custom_build.xml | 243 ++
.../ZIP/win_flex_bison-master/data/README.md | 227 ++
.../data/bison-default.css | 61 +
.../ZIP/win_flex_bison-master/data/local.mk | 58 +
.../data/m4sugar/foreach.m4 | 362 ++
.../data/m4sugar/m4sugar.m4 | 3329 ++++++++++++++++
.../data/skeletons/bison.m4 | 1241 ++++++
.../data/skeletons/c++-skel.m4 | 27 +
.../data/skeletons/c++.m4 | 778 ++++
.../data/skeletons/c-like.m4 | 72 +
.../data/skeletons/c-skel.m4 | 27 +
.../win_flex_bison-master/data/skeletons/c.m4 | 1125 ++++++
.../data/skeletons/d-skel.m4 | 26 +
.../win_flex_bison-master/data/skeletons/d.m4 | 628 +++
.../data/skeletons/glr.c | 2763 +++++++++++++
.../data/skeletons/glr.cc | 397 ++
.../data/skeletons/glr2.cc | 3533 +++++++++++++++++
.../data/skeletons/java-skel.m4 | 27 +
.../data/skeletons/java.m4 | 502 +++
.../data/skeletons/lalr1.cc | 1633 ++++++++
.../data/skeletons/lalr1.d | 1326 +++++++
.../data/skeletons/lalr1.java | 1303 ++++++
.../data/skeletons/location.cc | 380 ++
.../data/skeletons/stack.hh | 157 +
.../data/skeletons/traceon.m4 | 2 +
.../data/skeletons/variant.hh | 525 +++
.../data/skeletons/yacc.c | 2209 +++++++++++
.../win_flex_bison-master/data/xslt/bison.xsl | 105 +
.../data/xslt/xml2dot.xsl | 401 ++
.../data/xslt/xml2text.xsl | 572 +++
.../data/xslt/xml2xhtml.xsl | 765 ++++
.../ZIP/win_flex_bison-master/win_bison.exe | Bin 0 -> 611840 bytes
.../ZIP/win_flex_bison-master/win_flex.exe | Bin 0 -> 491008 bytes
bison/MinSizeRel/data/README.md | 227 ++
bison/MinSizeRel/data/bison-default.css | 61 +
bison/MinSizeRel/data/local.mk | 58 +
bison/MinSizeRel/data/m4sugar/foreach.m4 | 362 ++
bison/MinSizeRel/data/m4sugar/m4sugar.m4 | 3329 ++++++++++++++++
bison/MinSizeRel/data/skeletons/bison.m4 | 1241 ++++++
bison/MinSizeRel/data/skeletons/c++-skel.m4 | 27 +
bison/MinSizeRel/data/skeletons/c++.m4 | 778 ++++
bison/MinSizeRel/data/skeletons/c-like.m4 | 72 +
bison/MinSizeRel/data/skeletons/c-skel.m4 | 27 +
bison/MinSizeRel/data/skeletons/c.m4 | 1125 ++++++
bison/MinSizeRel/data/skeletons/d-skel.m4 | 26 +
bison/MinSizeRel/data/skeletons/d.m4 | 628 +++
bison/MinSizeRel/data/skeletons/glr.c | 2763 +++++++++++++
bison/MinSizeRel/data/skeletons/glr.cc | 397 ++
bison/MinSizeRel/data/skeletons/glr2.cc | 3533 +++++++++++++++++
bison/MinSizeRel/data/skeletons/java-skel.m4 | 27 +
bison/MinSizeRel/data/skeletons/java.m4 | 502 +++
bison/MinSizeRel/data/skeletons/lalr1.cc | 1633 ++++++++
bison/MinSizeRel/data/skeletons/lalr1.d | 1326 +++++++
bison/MinSizeRel/data/skeletons/lalr1.java | 1303 ++++++
bison/MinSizeRel/data/skeletons/location.cc | 380 ++
bison/MinSizeRel/data/skeletons/stack.hh | 157 +
bison/MinSizeRel/data/skeletons/traceon.m4 | 2 +
bison/MinSizeRel/data/skeletons/variant.hh | 525 +++
bison/MinSizeRel/data/skeletons/yacc.c | 2209 +++++++++++
bison/MinSizeRel/data/xslt/bison.xsl | 105 +
bison/MinSizeRel/data/xslt/xml2dot.xsl | 401 ++
bison/MinSizeRel/data/xslt/xml2text.xsl | 572 +++
bison/MinSizeRel/data/xslt/xml2xhtml.xsl | 765 ++++
bison/MinSizeRel/win_bison.exe | Bin 0 -> 510976 bytes
bison/MinSizeRel/y.lib | Bin 0 -> 2722 bytes
bison/RelWithDebInfo/data/README.md | 227 ++
bison/RelWithDebInfo/data/bison-default.css | 61 +
bison/RelWithDebInfo/data/local.mk | 58 +
bison/RelWithDebInfo/data/m4sugar/foreach.m4 | 362 ++
bison/RelWithDebInfo/data/m4sugar/m4sugar.m4 | 3329 ++++++++++++++++
bison/RelWithDebInfo/data/skeletons/bison.m4 | 1241 ++++++
.../RelWithDebInfo/data/skeletons/c++-skel.m4 | 27 +
bison/RelWithDebInfo/data/skeletons/c++.m4 | 778 ++++
bison/RelWithDebInfo/data/skeletons/c-like.m4 | 72 +
bison/RelWithDebInfo/data/skeletons/c-skel.m4 | 27 +
bison/RelWithDebInfo/data/skeletons/c.m4 | 1125 ++++++
bison/RelWithDebInfo/data/skeletons/d-skel.m4 | 26 +
bison/RelWithDebInfo/data/skeletons/d.m4 | 628 +++
bison/RelWithDebInfo/data/skeletons/glr.c | 2763 +++++++++++++
bison/RelWithDebInfo/data/skeletons/glr.cc | 397 ++
bison/RelWithDebInfo/data/skeletons/glr2.cc | 3533 +++++++++++++++++
.../data/skeletons/java-skel.m4 | 27 +
bison/RelWithDebInfo/data/skeletons/java.m4 | 502 +++
bison/RelWithDebInfo/data/skeletons/lalr1.cc | 1633 ++++++++
bison/RelWithDebInfo/data/skeletons/lalr1.d | 1326 +++++++
.../RelWithDebInfo/data/skeletons/lalr1.java | 1303 ++++++
.../RelWithDebInfo/data/skeletons/location.cc | 380 ++
bison/RelWithDebInfo/data/skeletons/stack.hh | 157 +
.../RelWithDebInfo/data/skeletons/traceon.m4 | 2 +
.../RelWithDebInfo/data/skeletons/variant.hh | 525 +++
bison/RelWithDebInfo/data/skeletons/yacc.c | 2209 +++++++++++
bison/RelWithDebInfo/data/xslt/bison.xsl | 105 +
bison/RelWithDebInfo/data/xslt/xml2dot.xsl | 401 ++
bison/RelWithDebInfo/data/xslt/xml2text.xsl | 572 +++
bison/RelWithDebInfo/data/xslt/xml2xhtml.xsl | 765 ++++
bison/RelWithDebInfo/win_bison.exe | Bin 0 -> 805376 bytes
bison/RelWithDebInfo/y.lib | Bin 0 -> 6290 bytes
.../MinSizeRel/win_bison.exe.recipe | 14 +
.../win_bison.tlog/CL.command.1.tlog | Bin 0 -> 54186 bytes
.../MinSizeRel/win_bison.tlog/CL.read.1.tlog | Bin 0 -> 320376 bytes
.../MinSizeRel/win_bison.tlog/CL.write.1.tlog | Bin 0 -> 8606 bytes
.../win_bison.tlog/CustomBuild.command.1.tlog | 10 +
.../win_bison.tlog/CustomBuild.read.1.tlog | 1 +
.../win_bison.tlog/CustomBuild.write.1.tlog | 2 +
.../win_bison.tlog/link.command.1.tlog | Bin 0 -> 9792 bytes
.../win_bison.tlog/link.read.1.tlog | Bin 0 -> 13072 bytes
.../win_bison.tlog/link.write.1.tlog | Bin 0 -> 5370 bytes
.../win_bison.tlog/win_bison.lastbuildstate | 2 +
.../RelWithDebInfo/win_bison.exe.recipe | 14 +
.../win_bison.tlog/CL.command.1.tlog | Bin 0 -> 55594 bytes
.../win_bison.tlog/CL.read.1.tlog | Bin 0 -> 320376 bytes
.../win_bison.tlog/CL.write.1.tlog | Bin 0 -> 17958 bytes
.../win_bison.tlog/CustomBuild.command.1.tlog | 10 +
.../win_bison.tlog/CustomBuild.read.1.tlog | 1 +
.../win_bison.tlog/CustomBuild.write.1.tlog | 2 +
.../win_bison.tlog/link.command.1.tlog | Bin 0 -> 10636 bytes
.../win_bison.tlog/link.read.1.tlog | Bin 0 -> 14034 bytes
.../win_bison.tlog/link.write.1.tlog | Bin 0 -> 5966 bytes
.../win_bison.tlog/win_bison.lastbuildstate | 2 +
bison/y.dir/MinSizeRel/y.lib.recipe | 11 +
.../y.dir/MinSizeRel/y.tlog/CL.command.1.tlog | Bin 0 -> 1926 bytes
bison/y.dir/MinSizeRel/y.tlog/CL.read.1.tlog | Bin 0 -> 2674 bytes
bison/y.dir/MinSizeRel/y.tlog/CL.write.1.tlog | Bin 0 -> 346 bytes
.../y.tlog/CustomBuild.command.1.tlog | 10 +
.../MinSizeRel/y.tlog/CustomBuild.read.1.tlog | 1 +
.../y.tlog/CustomBuild.write.1.tlog | 2 +
.../MinSizeRel/y.tlog/Lib-link.read.1.tlog | Bin 0 -> 568 bytes
.../MinSizeRel/y.tlog/Lib-link.write.1.tlog | Bin 0 -> 284 bytes
.../MinSizeRel/y.tlog/Lib.command.1.tlog | Bin 0 -> 480 bytes
.../y.dir/MinSizeRel/y.tlog/y.lastbuildstate | 2 +
bison/y.dir/RelWithDebInfo/y.lib.recipe | 11 +
.../RelWithDebInfo/y.tlog/CL.command.1.tlog | Bin 0 -> 1990 bytes
.../RelWithDebInfo/y.tlog/CL.read.1.tlog | Bin 0 -> 2674 bytes
.../RelWithDebInfo/y.tlog/CL.write.1.tlog | Bin 0 -> 772 bytes
.../y.tlog/CustomBuild.command.1.tlog | 10 +
.../y.tlog/CustomBuild.read.1.tlog | 1 +
.../y.tlog/CustomBuild.write.1.tlog | 2 +
.../y.tlog/Lib-link.read.1.tlog | Bin 0 -> 600 bytes
.../y.tlog/Lib-link.write.1.tlog | Bin 0 -> 308 bytes
.../RelWithDebInfo/y.tlog/Lib.command.1.tlog | Bin 0 -> 520 bytes
.../RelWithDebInfo/y.tlog/y.lastbuildstate | 2 +
common/MinSizeRel/winflexbison_common.lib | Bin 0 -> 866798 bytes
common/RelWithDebInfo/winflexbison_common.lib | Bin 0 -> 2594984 bytes
.../winflexb.DD225102.tlog/CL.command.1.tlog | Bin 0 -> 131428 bytes
.../winflexb.DD225102.tlog/CL.read.1.tlog | Bin 0 -> 582498 bytes
.../winflexb.DD225102.tlog/CL.write.1.tlog | Bin 0 -> 25170 bytes
.../CustomBuild.command.1.tlog | 10 +
.../CustomBuild.read.1.tlog | 1 +
.../CustomBuild.write.1.tlog | 2 +
.../Lib-link.read.1.tlog | Bin 0 -> 31994 bytes
.../Lib-link.write.1.tlog | Bin 0 -> 15928 bytes
.../winflexb.DD225102.tlog/Lib.command.1.tlog | Bin 0 -> 27118 bytes
.../winflexbison_common.lastbuildstate | 2 +
.../MinSizeRel/winflexbison_common.lib.recipe | 11 +
.../winflexb.DD225102.tlog/CL.command.1.tlog | Bin 0 -> 134916 bytes
.../winflexb.DD225102.tlog/CL.read.1.tlog | Bin 0 -> 582498 bytes
.../winflexb.DD225102.tlog/CL.write.1.tlog | Bin 0 -> 49480 bytes
.../CustomBuild.command.1.tlog | 10 +
.../CustomBuild.read.1.tlog | 1 +
.../CustomBuild.write.1.tlog | 2 +
.../Lib-link.read.1.tlog | Bin 0 -> 33738 bytes
.../Lib-link.write.1.tlog | Bin 0 -> 16808 bytes
.../winflexb.DD225102.tlog/Lib.command.1.tlog | Bin 0 -> 28870 bytes
.../winflexbison_common.lastbuildstate | 2 +
.../winflexbison_common.lib.recipe | 11 +
flex/MinSizeRel/fl.lib | Bin 0 -> 2064 bytes
flex/MinSizeRel/win_flex.exe | Bin 0 -> 425472 bytes
flex/RelWithDebInfo/fl.lib | Bin 0 -> 4596 bytes
flex/RelWithDebInfo/win_flex.exe | Bin 0 -> 612864 bytes
flex/fl.dir/MinSizeRel/fl.lib.recipe | 11 +
.../MinSizeRel/fl.tlog/CL.command.1.tlog | Bin 0 -> 1938 bytes
flex/fl.dir/MinSizeRel/fl.tlog/CL.read.1.tlog | Bin 0 -> 1692 bytes
.../fl.dir/MinSizeRel/fl.tlog/CL.write.1.tlog | Bin 0 -> 362 bytes
.../fl.tlog/CustomBuild.command.1.tlog | 10 +
.../fl.tlog/CustomBuild.read.1.tlog | 1 +
.../fl.tlog/CustomBuild.write.1.tlog | 2 +
.../MinSizeRel/fl.tlog/Lib-link.read.1.tlog | Bin 0 -> 588 bytes
.../MinSizeRel/fl.tlog/Lib-link.write.1.tlog | Bin 0 -> 294 bytes
.../MinSizeRel/fl.tlog/Lib.command.1.tlog | Bin 0 -> 504 bytes
.../MinSizeRel/fl.tlog/fl.lastbuildstate | 2 +
flex/fl.dir/RelWithDebInfo/fl.lib.recipe | 11 +
.../RelWithDebInfo/fl.tlog/CL.command.1.tlog | Bin 0 -> 2002 bytes
.../RelWithDebInfo/fl.tlog/CL.read.1.tlog | Bin 0 -> 1692 bytes
.../RelWithDebInfo/fl.tlog/CL.write.1.tlog | Bin 0 -> 794 bytes
.../fl.tlog/CustomBuild.command.1.tlog | 10 +
.../fl.tlog/CustomBuild.read.1.tlog | 1 +
.../fl.tlog/CustomBuild.write.1.tlog | 2 +
.../fl.tlog/Lib-link.read.1.tlog | Bin 0 -> 620 bytes
.../fl.tlog/Lib-link.write.1.tlog | Bin 0 -> 318 bytes
.../RelWithDebInfo/fl.tlog/Lib.command.1.tlog | Bin 0 -> 544 bytes
.../RelWithDebInfo/fl.tlog/fl.lastbuildstate | 2 +
.../MinSizeRel/win_flex.exe.recipe | 14 +
.../win_flex.tlog/CL.command.1.tlog | Bin 0 -> 24408 bytes
.../MinSizeRel/win_flex.tlog/CL.read.1.tlog | Bin 0 -> 99654 bytes
.../MinSizeRel/win_flex.tlog/CL.write.1.tlog | Bin 0 -> 3748 bytes
.../win_flex.tlog/CustomBuild.command.1.tlog | 10 +
.../win_flex.tlog/CustomBuild.read.1.tlog | 1 +
.../win_flex.tlog/CustomBuild.write.1.tlog | 2 +
.../win_flex.tlog/link.command.1.tlog | Bin 0 -> 4836 bytes
.../MinSizeRel/win_flex.tlog/link.read.1.tlog | Bin 0 -> 7114 bytes
.../win_flex.tlog/link.write.1.tlog | Bin 0 -> 2410 bytes
.../win_flex.tlog/win_flex.lastbuildstate | 2 +
.../RelWithDebInfo/win_flex.exe.recipe | 14 +
.../win_flex.tlog/CL.command.1.tlog | Bin 0 -> 25080 bytes
.../win_flex.tlog/CL.read.1.tlog | Bin 0 -> 99654 bytes
.../win_flex.tlog/CL.write.1.tlog | Bin 0 -> 8028 bytes
.../win_flex.tlog/CustomBuild.command.1.tlog | 10 +
.../win_flex.tlog/CustomBuild.read.1.tlog | 1 +
.../win_flex.tlog/CustomBuild.write.1.tlog | 2 +
.../win_flex.tlog/link.command.1.tlog | Bin 0 -> 5308 bytes
.../win_flex.tlog/link.read.1.tlog | Bin 0 -> 7704 bytes
.../win_flex.tlog/link.write.1.tlog | Bin 0 -> 2812 bytes
.../win_flex.tlog/win_flex.lastbuildstate | 2 +
install_manifest.txt | 88 +
win_flex_bison-master.zip | Bin 0 -> 1012809 bytes
242 files changed, 77260 insertions(+)
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master.zip
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/COPYING
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/COPYING.DOC
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/FlexLexer.h
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/README.md
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/changelog.md
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/README.md
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/1.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/2.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/3.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/4.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/5.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/6.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/BisonProperties.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/FlexProperties.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/Flex_debuging.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/Properties.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/docs/Verbosity.png
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_bison_only/win_bison_custom_build.props
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_bison_only/win_bison_custom_build.targets
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_bison_only/win_bison_custom_build.xml
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_flex_bison/win_flex_bison_custom_build.props
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_flex_bison/win_flex_bison_custom_build.targets
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_flex_bison/win_flex_bison_custom_build.xml
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_flex_only/win_flex_custom_build.props
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_flex_only/win_flex_custom_build.targets
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/custom_build_rules/win_flex_only/win_flex_custom_build.xml
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/README.md
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/bison-default.css
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/local.mk
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/m4sugar/foreach.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/m4sugar/m4sugar.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/bison.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/c++-skel.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/c++.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/c-like.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/c-skel.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/c.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/d-skel.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/d.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/glr.c
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/glr.cc
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/glr2.cc
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/java-skel.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/java.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/lalr1.cc
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/lalr1.d
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/lalr1.java
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/location.cc
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/stack.hh
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/traceon.m4
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/variant.hh
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/skeletons/yacc.c
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/xslt/bison.xsl
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/xslt/xml2dot.xsl
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/xslt/xml2text.xsl
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/data/xslt/xml2xhtml.xsl
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/win_bison.exe
create mode 100644 _CPack_Packages/win64/ZIP/win_flex_bison-master/win_flex.exe
create mode 100644 bison/MinSizeRel/data/README.md
create mode 100644 bison/MinSizeRel/data/bison-default.css
create mode 100644 bison/MinSizeRel/data/local.mk
create mode 100644 bison/MinSizeRel/data/m4sugar/foreach.m4
create mode 100644 bison/MinSizeRel/data/m4sugar/m4sugar.m4
create mode 100644 bison/MinSizeRel/data/skeletons/bison.m4
create mode 100644 bison/MinSizeRel/data/skeletons/c++-skel.m4
create mode 100644 bison/MinSizeRel/data/skeletons/c++.m4
create mode 100644 bison/MinSizeRel/data/skeletons/c-like.m4
create mode 100644 bison/MinSizeRel/data/skeletons/c-skel.m4
create mode 100644 bison/MinSizeRel/data/skeletons/c.m4
create mode 100644 bison/MinSizeRel/data/skeletons/d-skel.m4
create mode 100644 bison/MinSizeRel/data/skeletons/d.m4
create mode 100644 bison/MinSizeRel/data/skeletons/glr.c
create mode 100644 bison/MinSizeRel/data/skeletons/glr.cc
create mode 100644 bison/MinSizeRel/data/skeletons/glr2.cc
create mode 100644 bison/MinSizeRel/data/skeletons/java-skel.m4
create mode 100644 bison/MinSizeRel/data/skeletons/java.m4
create mode 100644 bison/MinSizeRel/data/skeletons/lalr1.cc
create mode 100644 bison/MinSizeRel/data/skeletons/lalr1.d
create mode 100644 bison/MinSizeRel/data/skeletons/lalr1.java
create mode 100644 bison/MinSizeRel/data/skeletons/location.cc
create mode 100644 bison/MinSizeRel/data/skeletons/stack.hh
create mode 100644 bison/MinSizeRel/data/skeletons/traceon.m4
create mode 100644 bison/MinSizeRel/data/skeletons/variant.hh
create mode 100644 bison/MinSizeRel/data/skeletons/yacc.c
create mode 100644 bison/MinSizeRel/data/xslt/bison.xsl
create mode 100644 bison/MinSizeRel/data/xslt/xml2dot.xsl
create mode 100644 bison/MinSizeRel/data/xslt/xml2text.xsl
create mode 100644 bison/MinSizeRel/data/xslt/xml2xhtml.xsl
create mode 100644 bison/MinSizeRel/win_bison.exe
create mode 100644 bison/MinSizeRel/y.lib
create mode 100644 bison/RelWithDebInfo/data/README.md
create mode 100644 bison/RelWithDebInfo/data/bison-default.css
create mode 100644 bison/RelWithDebInfo/data/local.mk
create mode 100644 bison/RelWithDebInfo/data/m4sugar/foreach.m4
create mode 100644 bison/RelWithDebInfo/data/m4sugar/m4sugar.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/bison.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/c++-skel.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/c++.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/c-like.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/c-skel.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/c.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/d-skel.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/d.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/glr.c
create mode 100644 bison/RelWithDebInfo/data/skeletons/glr.cc
create mode 100644 bison/RelWithDebInfo/data/skeletons/glr2.cc
create mode 100644 bison/RelWithDebInfo/data/skeletons/java-skel.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/java.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/lalr1.cc
create mode 100644 bison/RelWithDebInfo/data/skeletons/lalr1.d
create mode 100644 bison/RelWithDebInfo/data/skeletons/lalr1.java
create mode 100644 bison/RelWithDebInfo/data/skeletons/location.cc
create mode 100644 bison/RelWithDebInfo/data/skeletons/stack.hh
create mode 100644 bison/RelWithDebInfo/data/skeletons/traceon.m4
create mode 100644 bison/RelWithDebInfo/data/skeletons/variant.hh
create mode 100644 bison/RelWithDebInfo/data/skeletons/yacc.c
create mode 100644 bison/RelWithDebInfo/data/xslt/bison.xsl
create mode 100644 bison/RelWithDebInfo/data/xslt/xml2dot.xsl
create mode 100644 bison/RelWithDebInfo/data/xslt/xml2text.xsl
create mode 100644 bison/RelWithDebInfo/data/xslt/xml2xhtml.xsl
create mode 100644 bison/RelWithDebInfo/win_bison.exe
create mode 100644 bison/RelWithDebInfo/y.lib
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.exe.recipe
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/CL.command.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/CL.read.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/CL.write.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/CustomBuild.command.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/CustomBuild.read.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/CustomBuild.write.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/link.command.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/link.read.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/link.write.1.tlog
create mode 100644 bison/win_bison.dir/MinSizeRel/win_bison.tlog/win_bison.lastbuildstate
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.exe.recipe
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/CL.command.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/CL.read.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/CL.write.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/CustomBuild.command.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/CustomBuild.read.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/CustomBuild.write.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/link.command.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/link.read.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/link.write.1.tlog
create mode 100644 bison/win_bison.dir/RelWithDebInfo/win_bison.tlog/win_bison.lastbuildstate
create mode 100644 bison/y.dir/MinSizeRel/y.lib.recipe
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/CL.command.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/CL.read.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/CL.write.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/CustomBuild.command.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/CustomBuild.read.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/CustomBuild.write.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/Lib-link.read.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/Lib-link.write.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/Lib.command.1.tlog
create mode 100644 bison/y.dir/MinSizeRel/y.tlog/y.lastbuildstate
create mode 100644 bison/y.dir/RelWithDebInfo/y.lib.recipe
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/CL.command.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/CL.read.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/CL.write.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/CustomBuild.command.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/CustomBuild.read.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/CustomBuild.write.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/Lib-link.read.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/Lib-link.write.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/Lib.command.1.tlog
create mode 100644 bison/y.dir/RelWithDebInfo/y.tlog/y.lastbuildstate
create mode 100644 common/MinSizeRel/winflexbison_common.lib
create mode 100644 common/RelWithDebInfo/winflexbison_common.lib
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/CL.command.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/CL.read.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/CL.write.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/CustomBuild.command.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/CustomBuild.read.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/CustomBuild.write.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/Lib-link.read.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/Lib-link.write.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/Lib.command.1.tlog
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexb.DD225102.tlog/winflexbison_common.lastbuildstate
create mode 100644 common/winflexbison_common.dir/MinSizeRel/winflexbison_common.lib.recipe
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/CL.command.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/CL.read.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/CL.write.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/CustomBuild.command.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/CustomBuild.read.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/CustomBuild.write.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/Lib-link.read.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/Lib-link.write.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/Lib.command.1.tlog
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexb.DD225102.tlog/winflexbison_common.lastbuildstate
create mode 100644 common/winflexbison_common.dir/RelWithDebInfo/winflexbison_common.lib.recipe
create mode 100644 flex/MinSizeRel/fl.lib
create mode 100644 flex/MinSizeRel/win_flex.exe
create mode 100644 flex/RelWithDebInfo/fl.lib
create mode 100644 flex/RelWithDebInfo/win_flex.exe
create mode 100644 flex/fl.dir/MinSizeRel/fl.lib.recipe
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/CL.command.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/CL.read.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/CL.write.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/CustomBuild.command.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/CustomBuild.read.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/CustomBuild.write.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/Lib-link.read.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/Lib-link.write.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/Lib.command.1.tlog
create mode 100644 flex/fl.dir/MinSizeRel/fl.tlog/fl.lastbuildstate
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.lib.recipe
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/CL.command.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/CL.read.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/CL.write.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/CustomBuild.command.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/CustomBuild.read.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/CustomBuild.write.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/Lib-link.read.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/Lib-link.write.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/Lib.command.1.tlog
create mode 100644 flex/fl.dir/RelWithDebInfo/fl.tlog/fl.lastbuildstate
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.exe.recipe
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/CL.command.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/CL.read.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/CL.write.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/CustomBuild.command.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/CustomBuild.read.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/CustomBuild.write.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/link.command.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/link.read.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/link.write.1.tlog
create mode 100644 flex/win_flex.dir/MinSizeRel/win_flex.tlog/win_flex.lastbuildstate
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.exe.recipe
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/CL.command.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/CL.read.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/CL.write.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/CustomBuild.command.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/CustomBuild.read.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/CustomBuild.write.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/link.command.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/link.read.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/link.write.1.tlog
create mode 100644 flex/win_flex.dir/RelWithDebInfo/win_flex.tlog/win_flex.lastbuildstate
create mode 100644 install_manifest.txt
create mode 100644 win_flex_bison-master.zip
diff --git a/ALL_BUILD.vcxproj b/ALL_BUILD.vcxproj
index 73f63ff..ba38d93 100644
--- a/ALL_BUILD.vcxproj
+++ b/ALL_BUILD.vcxproj
@@ -55,6 +55,7 @@
+
@@ -196,5 +197,6 @@ if %errorlevel% neq 0 goto :VCEnd
+
\ No newline at end of file
diff --git a/_CPack_Packages/win64/ZIP/win_flex_bison-master.zip b/_CPack_Packages/win64/ZIP/win_flex_bison-master.zip
new file mode 100644
index 0000000000000000000000000000000000000000..884b0c9b8d7677946a4d1ddcf23497c4d5d31af1
GIT binary patch
literal 1012809
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