From ca018e95f7a8f99fdf982b2caab034680db3fbf4 Mon Sep 17 00:00:00 2001 From: Susumu Yata Date: Fri, 18 Sep 2020 19:23:27 +0900 Subject: [PATCH] Add files for Visual Studio 2019 --- vs2019/base-test/base-test.vcxproj | 143 ++++++++++++ vs2019/base-test/base-test.vcxproj.filters | 27 +++ vs2019/base-test/base-test.vcxproj.user | 4 + vs2019/io-test/io-test.vcxproj | 143 ++++++++++++ vs2019/io-test/io-test.vcxproj.filters | 27 +++ vs2019/io-test/io-test.vcxproj.user | 4 + vs2019/libmarisa/libmarisa.vcxproj | 209 ++++++++++++++++++ vs2019/libmarisa/libmarisa.vcxproj.filters | 198 +++++++++++++++++ vs2019/libmarisa/libmarisa.vcxproj.user | 4 + .../marisa-benchmark/marisa-benchmark.vcxproj | 144 ++++++++++++ .../marisa-benchmark.vcxproj.filters | 30 +++ .../marisa-benchmark.vcxproj.user | 4 + vs2019/marisa-build/marisa-build.vcxproj | 144 ++++++++++++ .../marisa-build/marisa-build.vcxproj.filters | 30 +++ vs2019/marisa-build/marisa-build.vcxproj.user | 4 + .../marisa-common-prefix-search.vcxproj | 144 ++++++++++++ ...arisa-common-prefix-search.vcxproj.filters | 30 +++ .../marisa-common-prefix-search.vcxproj.user | 4 + vs2019/marisa-dump/marisa-dump.vcxproj | 144 ++++++++++++ .../marisa-dump/marisa-dump.vcxproj.filters | 30 +++ vs2019/marisa-dump/marisa-dump.vcxproj.user | 4 + vs2019/marisa-lookup/marisa-lookup.vcxproj | 144 ++++++++++++ .../marisa-lookup.vcxproj.filters | 30 +++ .../marisa-lookup/marisa-lookup.vcxproj.user | 4 + .../marisa-predictive-search.vcxproj | 144 ++++++++++++ .../marisa-predictive-search.vcxproj.filters | 30 +++ .../marisa-predictive-search.vcxproj.user | 4 + .../marisa-reverse-lookup.vcxproj | 144 ++++++++++++ .../marisa-reverse-lookup.vcxproj.filters | 30 +++ .../marisa-reverse-lookup.vcxproj.user | 4 + vs2019/marisa-test/marisa-test.vcxproj | 143 ++++++++++++ .../marisa-test/marisa-test.vcxproj.filters | 27 +++ vs2019/marisa-test/marisa-test.vcxproj.user | 4 + vs2019/trie-test/trie-test.vcxproj | 143 ++++++++++++ vs2019/trie-test/trie-test.vcxproj.filters | 27 +++ vs2019/trie-test/trie-test.vcxproj.user | 4 + vs2019/vector-test/vector-test.vcxproj | 143 ++++++++++++ .../vector-test/vector-test.vcxproj.filters | 27 +++ vs2019/vector-test/vector-test.vcxproj.user | 4 + vs2019/vs2019.sln | 151 +++++++++++++ 40 files changed, 2678 insertions(+) create mode 100644 vs2019/base-test/base-test.vcxproj create mode 100644 vs2019/base-test/base-test.vcxproj.filters create mode 100644 vs2019/base-test/base-test.vcxproj.user create mode 100644 vs2019/io-test/io-test.vcxproj create mode 100644 vs2019/io-test/io-test.vcxproj.filters create mode 100644 vs2019/io-test/io-test.vcxproj.user create mode 100644 vs2019/libmarisa/libmarisa.vcxproj create mode 100644 vs2019/libmarisa/libmarisa.vcxproj.filters create mode 100644 vs2019/libmarisa/libmarisa.vcxproj.user create mode 100644 vs2019/marisa-benchmark/marisa-benchmark.vcxproj create mode 100644 vs2019/marisa-benchmark/marisa-benchmark.vcxproj.filters create mode 100644 vs2019/marisa-benchmark/marisa-benchmark.vcxproj.user create mode 100644 vs2019/marisa-build/marisa-build.vcxproj create mode 100644 vs2019/marisa-build/marisa-build.vcxproj.filters create mode 100644 vs2019/marisa-build/marisa-build.vcxproj.user create mode 100644 vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj create mode 100644 vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.filters create mode 100644 vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.user create mode 100644 vs2019/marisa-dump/marisa-dump.vcxproj create mode 100644 vs2019/marisa-dump/marisa-dump.vcxproj.filters create mode 100644 vs2019/marisa-dump/marisa-dump.vcxproj.user create mode 100644 vs2019/marisa-lookup/marisa-lookup.vcxproj create mode 100644 vs2019/marisa-lookup/marisa-lookup.vcxproj.filters create mode 100644 vs2019/marisa-lookup/marisa-lookup.vcxproj.user create mode 100644 vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj create mode 100644 vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.filters create mode 100644 vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.user create mode 100644 vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj create mode 100644 vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.filters create mode 100644 vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.user create mode 100644 vs2019/marisa-test/marisa-test.vcxproj create mode 100644 vs2019/marisa-test/marisa-test.vcxproj.filters create mode 100644 vs2019/marisa-test/marisa-test.vcxproj.user create mode 100644 vs2019/trie-test/trie-test.vcxproj create mode 100644 vs2019/trie-test/trie-test.vcxproj.filters create mode 100644 vs2019/trie-test/trie-test.vcxproj.user create mode 100644 vs2019/vector-test/vector-test.vcxproj create mode 100644 vs2019/vector-test/vector-test.vcxproj.filters create mode 100644 vs2019/vector-test/vector-test.vcxproj.user create mode 100644 vs2019/vs2019.sln diff --git a/vs2019/base-test/base-test.vcxproj b/vs2019/base-test/base-test.vcxproj new file mode 100644 index 0000000..292afd0 --- /dev/null +++ b/vs2019/base-test/base-test.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877} + basetest + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + + + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + \ No newline at end of file diff --git a/vs2019/base-test/base-test.vcxproj.filters b/vs2019/base-test/base-test.vcxproj.filters new file mode 100644 index 0000000..b36dbf7 --- /dev/null +++ b/vs2019/base-test/base-test.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/base-test/base-test.vcxproj.user b/vs2019/base-test/base-test.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/base-test/base-test.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/io-test/io-test.vcxproj b/vs2019/io-test/io-test.vcxproj new file mode 100644 index 0000000..b86c556 --- /dev/null +++ b/vs2019/io-test/io-test.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7} + iotest + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + + + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + \ No newline at end of file diff --git a/vs2019/io-test/io-test.vcxproj.filters b/vs2019/io-test/io-test.vcxproj.filters new file mode 100644 index 0000000..ffb02e3 --- /dev/null +++ b/vs2019/io-test/io-test.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/io-test/io-test.vcxproj.user b/vs2019/io-test/io-test.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/io-test/io-test.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/libmarisa/libmarisa.vcxproj b/vs2019/libmarisa/libmarisa.vcxproj new file mode 100644 index 0000000..af1b848 --- /dev/null +++ b/vs2019/libmarisa/libmarisa.vcxproj @@ -0,0 +1,209 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 16.0 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051} + Win32Proj + libmarisa + 10.0 + + + + StaticLibrary + true + v142 + Unicode + + + StaticLibrary + false + v142 + true + Unicode + + + StaticLibrary + true + v142 + Unicode + + + StaticLibrary + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + true + + + false + + + false + + + + NotUsing + Level3 + Disabled + true + WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) + true + pch.h + ../../lib;../../include + + + Windows + true + + + + + NotUsing + Level3 + Disabled + true + _DEBUG;_LIB;%(PreprocessorDefinitions) + true + pch.h + ../../lib;../../include + + + Windows + true + + + + + NotUsing + Level3 + MaxSpeed + true + true + true + WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + true + pch.h + ../../lib;../../include + + + Windows + true + true + true + + + + + NotUsing + Level3 + MaxSpeed + true + true + true + NDEBUG;_LIB;%(PreprocessorDefinitions) + true + pch.h + ../../lib;../../include + + + Windows + true + true + true + + + + + + \ No newline at end of file diff --git a/vs2019/libmarisa/libmarisa.vcxproj.filters b/vs2019/libmarisa/libmarisa.vcxproj.filters new file mode 100644 index 0000000..2b5fe1d --- /dev/null +++ b/vs2019/libmarisa/libmarisa.vcxproj.filters @@ -0,0 +1,198 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {6a5e8699-c05a-4222-a73e-ee9a9b69c9bc} + + + {0f1adaef-6e2e-40c0-85db-ebf6dd88d816} + + + {98dcf8e4-e9d3-4a59-915a-ecf81cf523de} + + + {3d912a1c-f709-4a9f-9ec6-71ce4138ff07} + + + {f583a859-4da1-40b7-92f5-6fe00a24c724} + + + {b4e0e26e-0cf9-47a9-9a41-1846f59ddb03} + + + {5cd51437-40da-4f42-a2f4-1e3c4e969883} + + + {9ebc8862-4947-47ad-b59b-4099c0e173d9} + + + {e6553ca1-683f-49d6-8bf5-72ad7d9ca0f5} + + + {e2d4a196-6cf8-4cd4-8cee-f26474f1538d} + + + {b8efd0b8-cb6d-4142-acfa-3f2a5eee0540} + + + {590bea35-0677-4c6e-a766-7d737c2c91e7} + + + {ba09a25a-f7f4-4c09-a359-7e32b7dd1eba} + + + {0342abbf-dd98-4720-9df3-7622b39a7efb} + + + + + Source Files\marisa\grimoire\io + + + Source Files\marisa\grimoire\io + + + Source Files\marisa\grimoire\io + + + Source Files\marisa\grimoire\trie + + + Source Files\marisa\grimoire\trie + + + Source Files\marisa + + + Source Files\marisa + + + Source Files\marisa + + + Source Files\marisa\grimoire\vector + + + + + Header Files\include + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\include\marisa + + + Header Files\lib\marisa\grimoire + + + Header Files\lib\marisa\grimoire + + + Header Files\lib\marisa\grimoire + + + Header Files\lib\marisa\grimoire + + + Header Files\lib\marisa\grimoire + + + Header Files\lib\marisa\grimoire\algorithm + + + Header Files\lib\marisa\grimoire\io + + + Header Files\lib\marisa\grimoire\io + + + Header Files\lib\marisa\grimoire\io + + + Header Files\lib\marisa\grimoire\vector + + + Header Files\lib\marisa\grimoire\vector + + + Header Files\lib\marisa\grimoire\vector + + + Header Files\lib\marisa\grimoire\vector + + + Header Files\lib\marisa\grimoire\vector + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + Header Files\lib\marisa\grimoire\trie + + + \ No newline at end of file diff --git a/vs2019/libmarisa/libmarisa.vcxproj.user b/vs2019/libmarisa/libmarisa.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/libmarisa/libmarisa.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-benchmark/marisa-benchmark.vcxproj b/vs2019/marisa-benchmark/marisa-benchmark.vcxproj new file mode 100644 index 0000000..76aa0dd --- /dev/null +++ b/vs2019/marisa-benchmark/marisa-benchmark.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {CCD0AA2B-1461-4937-B3AD-487E541425FD} + marisabenchmark + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-benchmark/marisa-benchmark.vcxproj.filters b/vs2019/marisa-benchmark/marisa-benchmark.vcxproj.filters new file mode 100644 index 0000000..22e6b86 --- /dev/null +++ b/vs2019/marisa-benchmark/marisa-benchmark.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-benchmark/marisa-benchmark.vcxproj.user b/vs2019/marisa-benchmark/marisa-benchmark.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-benchmark/marisa-benchmark.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-build/marisa-build.vcxproj b/vs2019/marisa-build/marisa-build.vcxproj new file mode 100644 index 0000000..317db63 --- /dev/null +++ b/vs2019/marisa-build/marisa-build.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D} + marisabuild + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-build/marisa-build.vcxproj.filters b/vs2019/marisa-build/marisa-build.vcxproj.filters new file mode 100644 index 0000000..5c8b994 --- /dev/null +++ b/vs2019/marisa-build/marisa-build.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-build/marisa-build.vcxproj.user b/vs2019/marisa-build/marisa-build.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-build/marisa-build.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj b/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj new file mode 100644 index 0000000..e4871c9 --- /dev/null +++ b/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {DA26209C-2397-4947-A449-26B80E487E32} + marisacommonprefixsearch + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.filters b/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.filters new file mode 100644 index 0000000..f787d4a --- /dev/null +++ b/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.user b/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-dump/marisa-dump.vcxproj b/vs2019/marisa-dump/marisa-dump.vcxproj new file mode 100644 index 0000000..a9af1b1 --- /dev/null +++ b/vs2019/marisa-dump/marisa-dump.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {C74BED4A-E531-48CA-886B-50481E5E7B1C} + marisadump + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-dump/marisa-dump.vcxproj.filters b/vs2019/marisa-dump/marisa-dump.vcxproj.filters new file mode 100644 index 0000000..0bd0e10 --- /dev/null +++ b/vs2019/marisa-dump/marisa-dump.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-dump/marisa-dump.vcxproj.user b/vs2019/marisa-dump/marisa-dump.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-dump/marisa-dump.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-lookup/marisa-lookup.vcxproj b/vs2019/marisa-lookup/marisa-lookup.vcxproj new file mode 100644 index 0000000..7656465 --- /dev/null +++ b/vs2019/marisa-lookup/marisa-lookup.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {6F726B87-D099-4608-86B5-1755E522D9E8} + marisalookup + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-lookup/marisa-lookup.vcxproj.filters b/vs2019/marisa-lookup/marisa-lookup.vcxproj.filters new file mode 100644 index 0000000..8d2b501 --- /dev/null +++ b/vs2019/marisa-lookup/marisa-lookup.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-lookup/marisa-lookup.vcxproj.user b/vs2019/marisa-lookup/marisa-lookup.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-lookup/marisa-lookup.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj b/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj new file mode 100644 index 0000000..3274e8b --- /dev/null +++ b/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {2D8A2745-6B9B-4073-B752-8308C512E372} + marisapredictivesearch + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.filters b/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.filters new file mode 100644 index 0000000..19526f0 --- /dev/null +++ b/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.user b/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj b/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj new file mode 100644 index 0000000..091f7ab --- /dev/null +++ b/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj @@ -0,0 +1,144 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812} + marisareverselookup + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + + + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.filters b/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.filters new file mode 100644 index 0000000..2c0bd05 --- /dev/null +++ b/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.user b/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/marisa-test/marisa-test.vcxproj b/vs2019/marisa-test/marisa-test.vcxproj new file mode 100644 index 0000000..05dd262 --- /dev/null +++ b/vs2019/marisa-test/marisa-test.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F} + marisatest + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../include + + + Console + true + true + + + + + + + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + \ No newline at end of file diff --git a/vs2019/marisa-test/marisa-test.vcxproj.filters b/vs2019/marisa-test/marisa-test.vcxproj.filters new file mode 100644 index 0000000..6a45ac4 --- /dev/null +++ b/vs2019/marisa-test/marisa-test.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/marisa-test/marisa-test.vcxproj.user b/vs2019/marisa-test/marisa-test.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/marisa-test/marisa-test.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/trie-test/trie-test.vcxproj b/vs2019/trie-test/trie-test.vcxproj new file mode 100644 index 0000000..9e36492 --- /dev/null +++ b/vs2019/trie-test/trie-test.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {1654861A-6F01-4D7C-830B-A39678093E4C} + trietest + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + + + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + \ No newline at end of file diff --git a/vs2019/trie-test/trie-test.vcxproj.filters b/vs2019/trie-test/trie-test.vcxproj.filters new file mode 100644 index 0000000..3c8330a --- /dev/null +++ b/vs2019/trie-test/trie-test.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/trie-test/trie-test.vcxproj.user b/vs2019/trie-test/trie-test.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/trie-test/trie-test.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/vector-test/vector-test.vcxproj b/vs2019/vector-test/vector-test.vcxproj new file mode 100644 index 0000000..4c223cb --- /dev/null +++ b/vs2019/vector-test/vector-test.vcxproj @@ -0,0 +1,143 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8} + vectortest + 10.0 + + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + Application + true + v142 + MultiByte + + + Application + false + v142 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + Disabled + true + true + ../../lib;../../include + + + Console + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + ../../lib;../../include + + + Console + true + true + + + + + + + + + + + {84009daf-7faf-44ac-a6aa-023ef63e3051} + + + + + + \ No newline at end of file diff --git a/vs2019/vector-test/vector-test.vcxproj.filters b/vs2019/vector-test/vector-test.vcxproj.filters new file mode 100644 index 0000000..34f9f42 --- /dev/null +++ b/vs2019/vector-test/vector-test.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file diff --git a/vs2019/vector-test/vector-test.vcxproj.user b/vs2019/vector-test/vector-test.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/vs2019/vector-test/vector-test.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/vs2019/vs2019.sln b/vs2019/vs2019.sln new file mode 100644 index 0000000..df0ecfd --- /dev/null +++ b/vs2019/vs2019.sln @@ -0,0 +1,151 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29519.87 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmarisa", "libmarisa\libmarisa.vcxproj", "{84009DAF-7FAF-44AC-A6AA-023EF63E3051}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base-test", "base-test\base-test.vcxproj", "{9C0CFD54-C5A7-4736-9063-7DCB085B2877}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-test", "marisa-test\marisa-test.vcxproj", "{53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "io-test", "io-test\io-test.vcxproj", "{F9C6E136-FE11-4F7E-A113-7A98AACDABC7}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "trie-test", "trie-test\trie-test.vcxproj", "{1654861A-6F01-4D7C-830B-A39678093E4C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vector-test", "vector-test\vector-test.vcxproj", "{8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-benchmark", "marisa-benchmark\marisa-benchmark.vcxproj", "{CCD0AA2B-1461-4937-B3AD-487E541425FD}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-build", "marisa-build\marisa-build.vcxproj", "{3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-common-prefix-search", "marisa-common-prefix-search\marisa-common-prefix-search.vcxproj", "{DA26209C-2397-4947-A449-26B80E487E32}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-dump", "marisa-dump\marisa-dump.vcxproj", "{C74BED4A-E531-48CA-886B-50481E5E7B1C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-lookup", "marisa-lookup\marisa-lookup.vcxproj", "{6F726B87-D099-4608-86B5-1755E522D9E8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-predictive-search", "marisa-predictive-search\marisa-predictive-search.vcxproj", "{2D8A2745-6B9B-4073-B752-8308C512E372}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "marisa-reverse-lookup", "marisa-reverse-lookup\marisa-reverse-lookup.vcxproj", "{C11C1449-D2A6-4C0F-BCD7-6379F81C5812}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Debug|x64.ActiveCfg = Debug|x64 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Debug|x64.Build.0 = Debug|x64 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Debug|x86.ActiveCfg = Debug|Win32 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Debug|x86.Build.0 = Debug|Win32 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Release|x64.ActiveCfg = Release|x64 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Release|x64.Build.0 = Release|x64 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Release|x86.ActiveCfg = Release|Win32 + {84009DAF-7FAF-44AC-A6AA-023EF63E3051}.Release|x86.Build.0 = Release|Win32 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Debug|x64.ActiveCfg = Debug|x64 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Debug|x64.Build.0 = Debug|x64 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Debug|x86.ActiveCfg = Debug|Win32 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Debug|x86.Build.0 = Debug|Win32 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Release|x64.ActiveCfg = Release|x64 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Release|x64.Build.0 = Release|x64 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Release|x86.ActiveCfg = Release|Win32 + {9C0CFD54-C5A7-4736-9063-7DCB085B2877}.Release|x86.Build.0 = Release|Win32 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Debug|x64.ActiveCfg = Debug|x64 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Debug|x64.Build.0 = Debug|x64 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Debug|x86.ActiveCfg = Debug|Win32 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Debug|x86.Build.0 = Debug|Win32 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Release|x64.ActiveCfg = Release|x64 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Release|x64.Build.0 = Release|x64 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Release|x86.ActiveCfg = Release|Win32 + {53731F7C-2EB6-4A9F-A6DF-A49DDAAF613F}.Release|x86.Build.0 = Release|Win32 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Debug|x64.ActiveCfg = Debug|x64 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Debug|x64.Build.0 = Debug|x64 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Debug|x86.ActiveCfg = Debug|Win32 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Debug|x86.Build.0 = Debug|Win32 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Release|x64.ActiveCfg = Release|x64 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Release|x64.Build.0 = Release|x64 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Release|x86.ActiveCfg = Release|Win32 + {F9C6E136-FE11-4F7E-A113-7A98AACDABC7}.Release|x86.Build.0 = Release|Win32 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Debug|x64.ActiveCfg = Debug|x64 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Debug|x64.Build.0 = Debug|x64 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Debug|x86.ActiveCfg = Debug|Win32 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Debug|x86.Build.0 = Debug|Win32 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Release|x64.ActiveCfg = Release|x64 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Release|x64.Build.0 = Release|x64 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Release|x86.ActiveCfg = Release|Win32 + {1654861A-6F01-4D7C-830B-A39678093E4C}.Release|x86.Build.0 = Release|Win32 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Debug|x64.ActiveCfg = Debug|x64 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Debug|x64.Build.0 = Debug|x64 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Debug|x86.ActiveCfg = Debug|Win32 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Debug|x86.Build.0 = Debug|Win32 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Release|x64.ActiveCfg = Release|x64 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Release|x64.Build.0 = Release|x64 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Release|x86.ActiveCfg = Release|Win32 + {8FAC4D71-7D54-4438-B84C-D6B779AD0EE8}.Release|x86.Build.0 = Release|Win32 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Debug|x64.ActiveCfg = Debug|x64 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Debug|x64.Build.0 = Debug|x64 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Debug|x86.ActiveCfg = Debug|Win32 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Debug|x86.Build.0 = Debug|Win32 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Release|x64.ActiveCfg = Release|x64 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Release|x64.Build.0 = Release|x64 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Release|x86.ActiveCfg = Release|Win32 + {CCD0AA2B-1461-4937-B3AD-487E541425FD}.Release|x86.Build.0 = Release|Win32 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Debug|x64.ActiveCfg = Debug|x64 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Debug|x64.Build.0 = Debug|x64 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Debug|x86.ActiveCfg = Debug|Win32 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Debug|x86.Build.0 = Debug|Win32 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Release|x64.ActiveCfg = Release|x64 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Release|x64.Build.0 = Release|x64 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Release|x86.ActiveCfg = Release|Win32 + {3F2BDA56-422C-45F9-B2BC-5C19790E0D9D}.Release|x86.Build.0 = Release|Win32 + {DA26209C-2397-4947-A449-26B80E487E32}.Debug|x64.ActiveCfg = Debug|x64 + {DA26209C-2397-4947-A449-26B80E487E32}.Debug|x64.Build.0 = Debug|x64 + {DA26209C-2397-4947-A449-26B80E487E32}.Debug|x86.ActiveCfg = Debug|Win32 + {DA26209C-2397-4947-A449-26B80E487E32}.Debug|x86.Build.0 = Debug|Win32 + {DA26209C-2397-4947-A449-26B80E487E32}.Release|x64.ActiveCfg = Release|x64 + {DA26209C-2397-4947-A449-26B80E487E32}.Release|x64.Build.0 = Release|x64 + {DA26209C-2397-4947-A449-26B80E487E32}.Release|x86.ActiveCfg = Release|Win32 + {DA26209C-2397-4947-A449-26B80E487E32}.Release|x86.Build.0 = Release|Win32 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Debug|x64.ActiveCfg = Debug|x64 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Debug|x64.Build.0 = Debug|x64 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Debug|x86.ActiveCfg = Debug|Win32 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Debug|x86.Build.0 = Debug|Win32 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Release|x64.ActiveCfg = Release|x64 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Release|x64.Build.0 = Release|x64 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Release|x86.ActiveCfg = Release|Win32 + {C74BED4A-E531-48CA-886B-50481E5E7B1C}.Release|x86.Build.0 = Release|Win32 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Debug|x64.ActiveCfg = Debug|x64 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Debug|x64.Build.0 = Debug|x64 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Debug|x86.ActiveCfg = Debug|Win32 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Debug|x86.Build.0 = Debug|Win32 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Release|x64.ActiveCfg = Release|x64 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Release|x64.Build.0 = Release|x64 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Release|x86.ActiveCfg = Release|Win32 + {6F726B87-D099-4608-86B5-1755E522D9E8}.Release|x86.Build.0 = Release|Win32 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Debug|x64.ActiveCfg = Debug|x64 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Debug|x64.Build.0 = Debug|x64 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Debug|x86.ActiveCfg = Debug|Win32 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Debug|x86.Build.0 = Debug|Win32 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Release|x64.ActiveCfg = Release|x64 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Release|x64.Build.0 = Release|x64 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Release|x86.ActiveCfg = Release|Win32 + {2D8A2745-6B9B-4073-B752-8308C512E372}.Release|x86.Build.0 = Release|Win32 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Debug|x64.ActiveCfg = Debug|x64 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Debug|x64.Build.0 = Debug|x64 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Debug|x86.ActiveCfg = Debug|Win32 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Debug|x86.Build.0 = Debug|Win32 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Release|x64.ActiveCfg = Release|x64 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Release|x64.Build.0 = Release|x64 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Release|x86.ActiveCfg = Release|Win32 + {C11C1449-D2A6-4C0F-BCD7-6379F81C5812}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {937EA705-9CAC-4152-A3E2-E1A7C1A51E26} + EndGlobalSection +EndGlobal