From f23be0c3cf48e236df161523336997af75ad284e Mon Sep 17 00:00:00 2001 From: Charles Dang Date: Fri, 26 Jul 2019 23:19:29 +1100 Subject: [PATCH] Added VC16 projectfiles [ci skip] This supports 64 bit builds with vcpkg. Will need to decide what to do with porting these changes to the VC12/14 files... --- projectfiles/VC16/README.md | 59 + projectfiles/VC16/WML_tests.cmd | 50 + projectfiles/VC16/WindowsTimeout.cpp | 58 + projectfiles/VC16/WindowsTimeout.vcxproj | 153 + projectfiles/VC16/campaignd.vcxproj | 127 + projectfiles/VC16/campaignd.vcxproj.filters | 65 + .../VC16/files_with_deactivated_warnings.txt | 9 + projectfiles/VC16/liblua.vcxproj | 177 + projectfiles/VC16/liblua.vcxproj.filters | 197 + projectfiles/VC16/wesnoth.sln | 87 + projectfiles/VC16/wesnoth.vcxproj | 4120 +++++++++++++++++ projectfiles/VC16/wesnoth.vcxproj.filters | 3051 ++++++++++++ projectfiles/VC16/wesnothd.vcxproj | 424 ++ projectfiles/VC16/wesnothd.vcxproj.filters | 109 + projectfiles/VC16/wesnothlib.vcxproj | 311 ++ projectfiles/VC16/wesnothlib.vcxproj.filters | 168 + 16 files changed, 9165 insertions(+) create mode 100644 projectfiles/VC16/README.md create mode 100644 projectfiles/VC16/WML_tests.cmd create mode 100644 projectfiles/VC16/WindowsTimeout.cpp create mode 100644 projectfiles/VC16/WindowsTimeout.vcxproj create mode 100644 projectfiles/VC16/campaignd.vcxproj create mode 100644 projectfiles/VC16/campaignd.vcxproj.filters create mode 100644 projectfiles/VC16/files_with_deactivated_warnings.txt create mode 100644 projectfiles/VC16/liblua.vcxproj create mode 100644 projectfiles/VC16/liblua.vcxproj.filters create mode 100644 projectfiles/VC16/wesnoth.sln create mode 100644 projectfiles/VC16/wesnoth.vcxproj create mode 100644 projectfiles/VC16/wesnoth.vcxproj.filters create mode 100644 projectfiles/VC16/wesnothd.vcxproj create mode 100644 projectfiles/VC16/wesnothd.vcxproj.filters create mode 100644 projectfiles/VC16/wesnothlib.vcxproj create mode 100644 projectfiles/VC16/wesnothlib.vcxproj.filters diff --git a/projectfiles/VC16/README.md b/projectfiles/VC16/README.md new file mode 100644 index 000000000000..8d22075f80a3 --- /dev/null +++ b/projectfiles/VC16/README.md @@ -0,0 +1,59 @@ +# Compiling Wesnoth on Windows using Visual Studio + +The current minimum Visual Studio version required for compiling Wesnoth is Visual Studio 2013 (VC12). +Compilation is also supported with Visual Studio 2015 (VC14) and later versions. However, since we keep +the project files in the Git repository targeted at the minimum version, it is recommended you duplicate +the `wesnoth/projectfiles/VC12` directory and rename it after the Visual Studio version with which you +wish to build. + +## Prerequisites + +We maintain a handy [GitHub repository](https://github.com/aquileia/external) with all the external +libraries (see [INSTALL.md](https://github.com/wesnoth/wesnoth/blob/master/INSTALL.md)) Wesnoth requires. +It has various branches corresponding to the Visual Studio version you are building with. Be sure to use +the libraries from the appropriate branch! + +## What to do + +1. Clone or download a snapshot of the aforementioned dependency repository. If you do the latter, be sure +you've downloaded the snapshot for the correct branch, **not** `master`! Either way, it should be +cloned/unpacked into the same directory as Wesnoth. If you have Wesnoth cloned in `Documents/wesnoth`, for +example, the dependency pack should be at `Documents/external`. Note that `external` is the name of the +resulting directory by default. **DO NOT RENAME IT!** + +2. If you cloned the repository, switch to the the version-appropriate branch now. + +3. Return to `wesnoth/projectfiles` and duplicate the VC12 folder if applicable, as mentioned above. + +4. Open `projectfiles/VCXX/wesnoth.sln` in Visual Studio. At this point, it may prompt you to re-target the +projectfiles for your current VS and Windows versions. Do so; the build will likely fail if you do not. + +5. **Optional:** by default, Wesnoth's WML unit tests are run after each build. This can be quite annoying +and/or time-consuming if you build regularly. They can be disabled by heading to the `wesnoth` projectfile's +properties, under `Build Events → Post-Build Event`. Delete the value in the "Command Line" field. + +6. That's it! You can now go ahead and start the build (`Build → Build Solution`). + +7. **Important!** After building, copy all the files from `external/dll` into the same directory (`wesnoth/` +by default) as the newly built executable . The game will not start if you fail to do this. + +## Manually updating the external dependencies + +We do our best to keep the build dependency repository up-to-date with the latest versions of the libraries +within, as well as synced with any build requirement changes. If you want to build with a different version +of a certain library, however, you can fetch the relevant files at the links below: + +* **Boost:** http://www.boost.org/users/download. Do note that you will need to build the necessary Boost +libraries yourself. See the [instructions](https://github.com/aquileia/external/blob/master/README.md#updating-boost-libraries) +in the dependency repository for details. + +* **SDL 2:** https://www.libsdl.org/download-2.0.php. You'll want the "Visual C++ 32/64-bit" Development +Libraries. + +* **SDL_Image:** https://www.libsdl.org/projects/SDL_image. Again, you'll want the "Visual C++ 32/64-bit" +Development Libraries. + +* **SDL_Mixer:** https://www.libsdl.org/projects/SDL_mixer. Again, you'll want the "Visual C++ 32/64-bit" +Development Libraries. + +The other libraries require complicated compilation procedures too in-depth to document here. diff --git a/projectfiles/VC16/WML_tests.cmd b/projectfiles/VC16/WML_tests.cmd new file mode 100644 index 000000000000..e04d46f61873 --- /dev/null +++ b/projectfiles/VC16/WML_tests.cmd @@ -0,0 +1,50 @@ +:: WML_tests.cmd : Run the WML unit tests specified in wml_test_schedule + +:: preamble: don't spam stdout with commands, don't expand ERRORLEVEL to 0 +@echo off +setlocal enabledelayedexpansion + +:: if OMP_WAIT_POLICY isn't set, the process restarts itself and !ERRORLEVEL!=0 +set OMP_WAIT_POLICY=PASSIVE + +:: save file paths and command line arguments +cd ..\..\ +set LoadFile=wml_test_schedule +set binary=%~f1%wesnoth.exe +set opt=--log-strict=warning --noaddons + +echo running WML tests: +set tSTART=%time% + +:: ignore lines beginning with # +:: %%G contains whether the test should pass (0), timeout (2) or fail (1,4) +:: %%H is the name of the WML unit test to be executed +for /f "eol=# tokens=1,2 delims= " %%G in (%LoadFile%) do ( + WindowsTimeout.exe "%binary% %opt% -u%%H" 20000 + if !ERRORLEVEL! neq %%G ( + if !ERRORLEVEL! equ 2 ( + echo( + echo WML_tests.cmd: Warning WML2: Test '%%H' timed out, expected return value %%G + ) else ( + echo( + echo WML_tests.cmd: Error WML1: Test '%%H' returned !ERRORLEVEL!, expected %%G + ) + set /a "fail_num+=1" + ) + :: minimalistic progress bar + + Part of the Battle for Wesnoth Project http://www.wesnoth.org/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY. + + See the COPYING file for more details. +*/ + +/** + * @file + * Execute another executable: + * - wait for the process to quit, then pass through the error code + * - terminate it after a timeout of "t" microseconds, then return 2 + */ + +#if _WIN32_WINNT < 0x0602 //Windows version before Win8 + #define WIN32_LEAN_AND_MEAN + #include +#else + #include +#endif +#include +#include + +int main(int argc, char* argv[]) { + + if (argc != 3) { + std::cout << "WindowsTimeout: Error USAGE1: " << argv[0] << " \"command [--options]\" t"; + return -1; + } + + PROCESS_INFORMATION pi; + STARTUPINFO info = { sizeof(info) }; + HANDLE hStdErr = GetStdHandle(STD_ERROR_HANDLE); + info.hStdError = hStdErr; + + if (!CreateProcess(NULL, argv[1], NULL, NULL, TRUE, 0, NULL, NULL, &info, &pi)) + return -1; + + DWORD dwExitCode; + if (::WaitForSingleObject(pi.hProcess, atoi(argv[2])) == WAIT_OBJECT_0) { + GetExitCodeProcess(pi.hProcess, &dwExitCode); + } + else { + TerminateProcess(pi.hProcess, 2); + dwExitCode = 2; + } + CloseHandle(pi.hProcess); + CloseHandle(pi.hThread); + CloseHandle(hStdErr); + return dwExitCode; +} diff --git a/projectfiles/VC16/WindowsTimeout.vcxproj b/projectfiles/VC16/WindowsTimeout.vcxproj new file mode 100644 index 000000000000..7a40c68ae3c6 --- /dev/null +++ b/projectfiles/VC16/WindowsTimeout.vcxproj @@ -0,0 +1,153 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C} + wesnoth + Win32Proj + 10.0 + + + + Application + v142 + MultiByte + true + + + Application + v142 + MultiByte + true + + + Application + v142 + MultiByte + + + Application + v142 + MultiByte + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.30501.0 + + + true + + + true + + + + Disabled + false + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + Level4 + ProgramDatabase + true + + + /SAFESEH:NO %(AdditionalOptions) + $(OutDir)WindowsTimeout.exe + true + $(IntDir)$(TargetName).pdb + Console + + + + + Disabled + false + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + Level4 + ProgramDatabase + true + + + /SAFESEH:NO %(AdditionalOptions) + $(OutDir)WindowsTimeout.exe + true + $(IntDir)$(TargetName).pdb + Console + + + + + MaxSpeed + true + MultiThreadedDLL + true + Level3 + ProgramDatabase + + + false + Console + true + true + UseLinkTimeCodeGeneration + $(OutDir)WindowsTimeout.exe + + + + + MaxSpeed + true + MultiThreadedDLL + true + Level3 + ProgramDatabase + + + false + Console + true + true + UseLinkTimeCodeGeneration + $(OutDir)WindowsTimeout.exe + + + + + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/campaignd.vcxproj b/projectfiles/VC16/campaignd.vcxproj new file mode 100644 index 000000000000..d7b10270b43c --- /dev/null +++ b/projectfiles/VC16/campaignd.vcxproj @@ -0,0 +1,127 @@ + + + + + Debug + x64 + + + Release + x64 + + + + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD} + campaignd + 10.0 + + + + Application + true + v142 + NotSet + + + Application + false + v142 + true + NotSet + + + + + + + + + + + + + $(Configuration)\campaignd\ + + + + Level3 + Disabled + true + ..\..\src + _CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;_SCL_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;%(PreprocessorDefinitions) + 4244 + + + true + + + Shlwapi.lib;%(AdditionalDependencies) + + + + + Level3 + MaxSpeed + true + true + true + ..\..\src + _CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;_SCL_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;%(PreprocessorDefinitions) + 4244 + + + true + true + true + + + Shlwapi.lib;%(AdditionalDependencies) + + + + + {4a16638b-127b-4ae8-8e0b-4b211b96f976} + + + + + + + + + + + + + + + + $(IntDir)Addon\ + + + $(IntDir)Campaign_Server\ + + + $(IntDir)Campaign_Server\ + + + $(IntDir)Campaign_Server\ + + + $(IntDir)Campaign_Server\ + + + $(IntDir) + + + $(IntDir)Server\ + + + $(IntDir)Server\ + 4706;4458;%(DisableSpecificWarnings) + + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/campaignd.vcxproj.filters b/projectfiles/VC16/campaignd.vcxproj.filters new file mode 100644 index 000000000000..5f63fe27321e --- /dev/null +++ b/projectfiles/VC16/campaignd.vcxproj.filters @@ -0,0 +1,65 @@ + + + + + {3f44d190-c2f6-4d26-9902-e9f9452dac22} + + + {4053cbc0-8a41-470e-aa62-45ea801ed834} + + + {1e0c6b2f-b2e7-44db-b7f6-81ee59a6caa3} + + + + + Addon + + + Server + + + Server + + + Campaign_Server + + + Campaign_Server + + + Campaign_Server + + + Campaign_Server + + + Campaign_Server + + + + + + Addon + + + Server + + + Server + + + Campaign_Server + + + Campaign_Server + + + Campaign_Server + + + Campaign_Server + + + + \ No newline at end of file diff --git a/projectfiles/VC16/files_with_deactivated_warnings.txt b/projectfiles/VC16/files_with_deactivated_warnings.txt new file mode 100644 index 000000000000..ab2d7e5f9a25 --- /dev/null +++ b/projectfiles/VC16/files_with_deactivated_warnings.txt @@ -0,0 +1,9 @@ +Files in src/ which have one or more warnings file-specifically deactivated for the Debug configuration. +These warnings are thrown due to included header files (mostly boost ones), +since they apparently don't compile using warnlevel 4. + +game +network_asio +serialization/binary_or_text +serialization/parser +server/simple_wml diff --git a/projectfiles/VC16/liblua.vcxproj b/projectfiles/VC16/liblua.vcxproj new file mode 100644 index 000000000000..70392fb2f433 --- /dev/null +++ b/projectfiles/VC16/liblua.vcxproj @@ -0,0 +1,177 @@ + + + + + Debug + x64 + + + ReleaseDEBUG + x64 + + + Release + x64 + + + + {01AE7104-A4B1-428E-BA7C-460FE656AE5C} + lualib + Win32Proj + 10.0 + + + + StaticLibrary + v142 + Unicode + true + + + StaticLibrary + v142 + Unicode + true + + + StaticLibrary + v142 + Unicode + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.30501.0 + + + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + false + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + true + TurnOffAllWarnings + ProgramDatabase + true + ../src/wesnoth_lua_config.h;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + true + TurnOffAllWarnings + ProgramDatabase + ../src/wesnoth_lua_config.h;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + true + TurnOffAllWarnings + ProgramDatabase + ../src/wesnoth_lua_config.h;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/liblua.vcxproj.filters b/projectfiles/VC16/liblua.vcxproj.filters new file mode 100644 index 000000000000..3f6dc54fb5a2 --- /dev/null +++ b/projectfiles/VC16/liblua.vcxproj.filters @@ -0,0 +1,197 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + + + 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 + + + \ No newline at end of file diff --git a/projectfiles/VC16/wesnoth.sln b/projectfiles/VC16/wesnoth.sln new file mode 100644 index 000000000000..dd3246043755 --- /dev/null +++ b/projectfiles/VC16/wesnoth.sln @@ -0,0 +1,87 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29102.190 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wesnoth", "wesnoth.vcxproj", "{65ACA13F-5F5C-4768-A89A-ECF6C16F1512}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wesnothd", "wesnothd.vcxproj", "{72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wesnothlib", "wesnothlib.vcxproj", "{4A16638B-127B-4AE8-8E0B-4B211B96F976}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblua", "liblua.vcxproj", "{01AE7104-A4B1-428E-BA7C-460FE656AE5C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WindowsTimeout", "WindowsTimeout.vcxproj", "{06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "campaignd", "campaignd.vcxproj", "{DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win64 = Debug|Win64 + Release|Win64 = Release|Win64 + ReleaseDEBUG|Win64 = ReleaseDEBUG|Win64 + Test_Debug|Win64 = Test_Debug|Win64 + Test_Release|Win64 = Test_Release|Win64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Debug|Win64.ActiveCfg = Debug|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Release|Win64.ActiveCfg = Release|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Release|Win64.Build.0 = Release|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.ReleaseDEBUG|Win64.ActiveCfg = ReleaseDEBUG|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.ReleaseDEBUG|Win64.Build.0 = ReleaseDEBUG|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Debug|Win64.ActiveCfg = Test_Debug|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Debug|Win64.Build.0 = Test_Debug|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Release|Win64.ActiveCfg = Test_Release|x64 + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Release|Win64.Build.0 = Test_Release|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Debug|Win64.ActiveCfg = Debug|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Release|Win64.ActiveCfg = Release|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Release|Win64.Build.0 = Release|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.ReleaseDEBUG|Win64.ActiveCfg = ReleaseDEBUG|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.ReleaseDEBUG|Win64.Build.0 = ReleaseDEBUG|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Test_Debug|Win64.ActiveCfg = Debug|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Test_Debug|Win64.Build.0 = Debug|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Test_Release|Win64.ActiveCfg = Release|x64 + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Test_Release|Win64.Build.0 = Release|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Debug|Win64.ActiveCfg = Debug|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Release|Win64.ActiveCfg = Release|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Release|Win64.Build.0 = Release|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.ReleaseDEBUG|Win64.ActiveCfg = ReleaseDEBUG|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.ReleaseDEBUG|Win64.Build.0 = ReleaseDEBUG|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Debug|Win64.ActiveCfg = Debug|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Debug|Win64.Build.0 = Debug|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Release|Win64.ActiveCfg = Release|x64 + {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Release|Win64.Build.0 = Release|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Debug|Win64.ActiveCfg = Debug|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Release|Win64.ActiveCfg = Release|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Release|Win64.Build.0 = Release|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.ReleaseDEBUG|Win64.ActiveCfg = ReleaseDEBUG|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.ReleaseDEBUG|Win64.Build.0 = ReleaseDEBUG|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Test_Debug|Win64.ActiveCfg = Debug|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Test_Debug|Win64.Build.0 = Debug|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Test_Release|Win64.ActiveCfg = Release|x64 + {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Test_Release|Win64.Build.0 = Release|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Debug|Win64.ActiveCfg = Debug|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Release|Win64.ActiveCfg = Release|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Release|Win64.Build.0 = Release|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.ReleaseDEBUG|Win64.ActiveCfg = Release|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.ReleaseDEBUG|Win64.Build.0 = Release|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Test_Debug|Win64.ActiveCfg = Debug|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Test_Debug|Win64.Build.0 = Debug|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Test_Release|Win64.ActiveCfg = Release|x64 + {06CDDAD5-8638-46F0-88F5-1B458B7FBE0C}.Test_Release|Win64.Build.0 = Release|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Debug|Win64.ActiveCfg = Debug|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Release|Win64.ActiveCfg = Release|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Release|Win64.Build.0 = Release|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.ReleaseDEBUG|Win64.ActiveCfg = Release|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.ReleaseDEBUG|Win64.Build.0 = Release|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Test_Debug|Win64.ActiveCfg = Debug|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Test_Debug|Win64.Build.0 = Debug|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Test_Release|Win64.ActiveCfg = Release|x64 + {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Test_Release|Win64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {56F14F84-C8A5-4A50-993D-B255775CDF84} + EndGlobalSection +EndGlobal diff --git a/projectfiles/VC16/wesnoth.vcxproj b/projectfiles/VC16/wesnoth.vcxproj new file mode 100644 index 000000000000..ced406c77c37 --- /dev/null +++ b/projectfiles/VC16/wesnoth.vcxproj @@ -0,0 +1,4120 @@ + + + + + Debug + x64 + + + ReleaseDEBUG + x64 + + + Release + x64 + + + Test_Debug + x64 + + + Test_Release + x64 + + + + {65ACA13F-5F5C-4768-A89A-ECF6C16F1512} + wesnoth + Win32Proj + 10.0 + + + + Application + v142 + NotSet + true + + + Application + v142 + NotSet + true + + + Application + v142 + NotSet + + + Application + v142 + Unicode + true + + + Application + v142 + NotSet + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.30501.0 + + + true + $(SolutionDir)..\..\ + OMP_WAIT_POLICY=PASSIVE + $(SolutionDir)\..\..\ + $(Configuration)\ + + + false + false + $(SolutionDir)..\..\ + OMP_WAIT_POLICY=PASSIVE + $(SolutionDir)\..\..\ + $(Configuration)\ + + + true + $(SolutionDir)\..\..\ + $(Configuration)\ + + + false + false + $(SolutionDir)\..\..\ + $(Configuration)\ + + + false + false + $(SolutionDir)..\..\ + OMP_WAIT_POLICY=PASSIVE + $(SolutionDir)\..\..\ + $(Configuration)\ + + + + $(IntDir)BuildLog-wesnoth.htm + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;DEBUG_LUA;%(PreprocessorDefinitions) + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + false + NotSet + false + Level4 + ProgramDatabase + 4503;4351;4250;4244;4127;4512;4003;4068;%(DisableSpecificWarnings) + true + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + 4239 + + + _MSC_VER;%(PreprocessorDefinitions) + + + /SAFESEH:NO %(AdditionalOptions) + SDL2maind.lib;SDL2d.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;cairod.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng16d.lib;ogg.lib;vorbis.lib;vorbisfile.lib;$(IntDir)liblua.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + MSVCR90;MSVCRT;%(IgnoreSpecificDefaultLibraries) + true + Windows + + + ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) + + + + + $(IntDir)BuildLog-wesnoth.htm + + + MaxSpeed + true + false + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + true + NotSet + false + Level3 + ProgramDatabase + true + 4503;4351;4250;4244;4267 + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + 4239 + /utf-8 %(AdditionalOptions) + + + _MSC_VER;%(PreprocessorDefinitions) + + + true + + + SDL2main.lib;SDL2.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng16.lib;ogg.lib;vorbis.lib;vorbisfile.lib;$(IntDir)liblua.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + false + Windows + true + true + UseFastLinkTimeCodeGeneration + + + ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) + + + WML unit tests for Wesnoth + + + + + + + $(IntDir)BuildLog-wesnoth.htm + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;DEBUG_LUA;MSVC_DO_UNIT_TESTS;BOOST_TEST_DYN_LINK;%(PreprocessorDefinitions) + EnableFastChecks + MultiThreadedDebugDLL + false + NotSet + false + Level4 + ProgramDatabase + 4503;4351;4250;4244;4127;4512;%(DisableSpecificWarnings) + true + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + 4239 + + + _MSC_VER;%(PreprocessorDefinitions) + + + SDL2main.lib;SDL2.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng16.lib;ogg.lib;vorbis.lib;vorbisfile.lib;Debug\liblua.lib;Shlwapi.lib;%(AdditionalDependencies) + $(OutDir)test.exe + %(AdditionalLibraryDirectories) + true + Console + + + ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) + + + + + $(IntDir)BuildLog-wesnoth.htm + + + MaxSpeed + true + false + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;MSVC_DO_UNIT_TESTS;BOOST_TEST_DYN_LINK;%(PreprocessorDefinitions) + MultiThreadedDLL + false + true + NotSet + false + Level3 + ProgramDatabase + true + 4503;4351;4250;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + 4239 + + + _MSC_VER;%(PreprocessorDefinitions) + + + true + + + SDL2main.lib;SDL2.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng16.lib;ogg.lib;vorbis.lib;vorbisfile.lib;Release\liblua.lib;Shlwapi.lib;%(AdditionalDependencies) + $(OutDir)test.exe + %(AdditionalLibraryDirectories) + false + Console + true + true + UseLinkTimeCodeGeneration + + + ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) + + + WML unit tests for Wesnoth + WML_tests.cmd $(OutDir) + + + + + $(IntDir)BuildLog-wesnoth.htm + + + MaxSpeed + true + false + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + true + NotSet + false + Level3 + ProgramDatabase + true + 4503;4351;4250;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + 4239 + + + _MSC_VER;%(PreprocessorDefinitions) + + + true + + + SDL2main.lib;SDL2.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng16.lib;ogg.lib;vorbis.lib;vorbisfile.lib;$(IntDir)liblua.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + true + Windows + true + true + UseLinkTimeCodeGeneration + + + ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) + + + WML unit tests for Wesnoth + WML_tests.cmd + + + + + + + + + + + + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + $(IntDir)Actions\ + + + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + + + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + + + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + + + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + + + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + + + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + $(IntDir)Addon\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + $(IntDir)ai\composite\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + $(IntDir)ai\default\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + $(IntDir)ai\formula\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + + + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + + + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + + + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + $(IntDir)ai\lua\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + $(IntDir)ai\ + + + + + + + + + + + + + + + + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + $(IntDir)Desktop\ + + + + + + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + + + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + + + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + + + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + + + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + + + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + $(IntDir)Editor\Action\ + + + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + + + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + + + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + + + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + + + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + + + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + $(IntDir)Editor\Action\Mouse\ + + + $(IntDir)Editor\Controller\ + $(IntDir)Editor\Controller\ + $(IntDir)Editor\Controller\ + $(IntDir)Editor\Controller\ + $(IntDir)Editor\Controller\ + + + $(IntDir)Editor\ + $(IntDir)Editor\ + $(IntDir)Editor\ + $(IntDir)Editor\ + $(IntDir)Editor\ + + + $(IntDir)Editor\ + $(IntDir)Editor\ + $(IntDir)Editor\ + $(IntDir)Editor\ + $(IntDir)Editor\ + + + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + + + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + + + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + + + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + $(IntDir)Editor\Map\ + + + $(IntDir)Editor\Palette\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Editor\Palette\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Editor\Palette\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Editor\Palette\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Editor\Palette\ + 4505;%(DisableSpecificWarnings) + + + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + + + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + + + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + + + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + + + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + + + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + $(IntDir)Editor\Palette\ + + + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + + + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + $(IntDir)Editor\Toolkit\ + + + + + + + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + $(IntDir)Font\ + + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + + + + + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + $(IntDir)Game_Events\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + $(IntDir)Game_Initialization\ + + + + + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + + + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + + + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + + + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + + + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + + + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + $(IntDir)generators\ + + + + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + + + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + + + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + + + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + $(IntDir)Gui\Auxiliary\Iterator\ + + + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + + + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + $(IntDir)Gui\Auxiliary\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + + + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + + + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + $(IntDir)Gui\Core\Event\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + + + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + $(IntDir)Gui\Core\Placer\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + $(IntDir)Gui\Core\ + + + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + + + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + $(IntDir)Gui\Core\Window_Builder\ + + + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + + + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + + + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + + + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + $(IntDir)Gui\Dialogs\Addon\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + $(IntDir)Gui\Dialogs\Editor\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + $(IntDir)Gui\Dialogs\Multiplayer\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + $(IntDir)Gui\Dialogs\ + + + $(IntDir)Gui\ + $(IntDir)Gui\ + $(IntDir)Gui\ + $(IntDir)Gui\ + $(IntDir)Gui\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Gui\Widgets\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Gui\Widgets\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Gui\Widgets\ + 4505;%(DisableSpecificWarnings) + $(IntDir)Gui\Widgets\ + 4505;%(DisableSpecificWarnings) + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + $(IntDir)Gui\Widgets\ + + + + + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + + + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + + + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + + + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + + + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + + + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + $(IntDir)Help\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + $(IntDir)Hotkeys\ + + + + + + + + + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + + + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + + + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + $(IntDir)Map\ + + + + + + + + + + + 4800;%(DisableSpecificWarnings) + + + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + + + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + + + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + $(IntDir)Pathfind\ + + + + + + + + + + + + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + + + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + + + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + + + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + + + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + + + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + $(IntDir)Preferences\ + + + + + + + + + + + + + + + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + $(IntDir)Scripting\ + + + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + + + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + $(IntDir)Scripting\Plugins\ + + + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + + + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + + + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + + + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + + + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + + + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + $(IntDir)SDL\ + + + + $(IntDir)Serialization\ + $(IntDir)Serialization\ + $(IntDir)Serialization\ + $(IntDir)Serialization\ + $(IntDir)Serialization\ + + + + + + + + + + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + + + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + + + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + $(IntDir)Storyscreen\ + + + + + + + + + + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + + + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + + + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + + + 4459;%(DisableSpecificWarnings) + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + + + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + $(IntDir)Terrain\ + + + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + + + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + + + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + + + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + + + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + true + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + $(IntDir)Tests\Gui\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + true + true + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + true + true + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + true + $(IntDir)Tests\ + $(IntDir)Tests\ + $(IntDir)Tests\ + + + true + true + true + $(IntDir)Tests\ + + + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + + + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + + + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + + + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + true + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + $(IntDir)Tests\Utils\ + + + + + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + $(IntDir)Units\ + + + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + + + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + + + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + + + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + + + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + $(IntDir)utils\ + + + + + + 4706;%(DisableSpecificWarnings) + true + true + + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + $(IntDir)Whiteboard\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + $(IntDir)Widgets\ + + + + $(IntDir)Xbrz\ + $(IntDir)Xbrz\ + $(IntDir)Xbrz\ + $(IntDir)Xbrz\ + $(IntDir)Xbrz\ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {01ae7104-a4b1-428e-ba7c-460fe656ae5c} + false + + + {4a16638b-127b-4ae8-8e0b-4b211b96f976} + false + + + {06cddad5-8638-46f0-88f5-1b458b7fbe0c} + false + + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/wesnoth.vcxproj.filters b/projectfiles/VC16/wesnoth.vcxproj.filters new file mode 100644 index 000000000000..40efa4e45400 --- /dev/null +++ b/projectfiles/VC16/wesnoth.vcxproj.filters @@ -0,0 +1,3051 @@ + + + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + {5bc75616-2d9e-4f5b-b005-f51c5cfe870f} + + + {65086279-fddf-4649-97e6-459cbb8e3ccb} + + + {60751cc4-3904-4e2f-bbca-9e52d0304c0c} + + + {6b807832-2ee4-4787-931f-216149430a7a} + + + {8f424c0d-d13e-4e0c-a9ab-1475df055564} + + + {60c2a51d-73ec-4411-b303-b2ba61890697} + + + {4876907c-b406-48ae-9645-2a5b7c2231b7} + + + {60facd44-6bd7-4322-a9aa-00cb66602013} + + + {bace6656-fc93-4c26-b632-1a8b891fe0e3} + + + {05ce3cdd-cbeb-4031-bcbb-1c2ab5c1186a} + + + {7a06663e-4f35-4e42-a3d6-42a47bb6b142} + + + {0a73de8f-dcb7-4573-8104-e681593733ac} + + + {85c96790-88fd-4219-a5e1-635e9add543f} + + + {ad5fb77b-a97a-4147-94dc-038bbc133d7d} + + + {ffebaed4-26cd-484b-a35e-a72dd8617f8a} + + + {0d261e2c-08c4-4e42-a6fc-9980fac076aa} + + + {006b82d3-7b2b-41ef-bfd8-8f98867cab7b} + + + {994675eb-e9db-4699-a08a-d29248d169e7} + + + {05bbc254-2f84-4980-abf4-8532d7f50e9a} + + + {20b434e4-97af-4f8a-859d-7fcdc1b8a49b} + + + {fa68ad1b-b8d0-4283-a19a-70161c6566b7} + + + {75251445-952a-46bd-80e8-2f6c70e270da} + + + {8759e13f-230e-4c54-ae07-422e3769781a} + + + {00be9260-c50d-482e-aa57-51094a0a0815} + + + {d456620a-4318-4016-9207-ea1063c89053} + + + {8c4c2a7a-1463-42c4-ba90-4c20ffc2e1e1} + + + {39a22192-c84d-4dc1-9c97-f04014a0ef76} + + + {19bbe43e-9121-4967-a577-f86104f79dbd} + + + {3bcf72b3-a8f8-40e9-9b59-dc0a1aca00dc} + + + {25899c1a-5d0e-4563-b110-41c4c7aff02e} + + + {88339068-7f62-47ef-b061-579a268b9941} + + + {6ca1d8d5-bafa-4e1c-a13c-aae7d5b33b56} + + + {23b03f49-f123-4efc-9a5d-4434fb3ee9cc} + + + {6434b92d-5101-4e6a-8e78-dfb7eaac992c} + + + {e220d025-af4f-4012-9895-ed91e90434b0} + + + {40352cdb-d635-4ae3-a2c0-4581efe52072} + + + {dd6417d8-266f-4e59-b5a5-a4a03b7f7ec5} + + + {624aae9c-a1fc-4c7c-ae8f-a9ec99a3fdb9} + + + {1e09350f-0dd9-40c8-935f-0e7bfd458f19} + + + {c90c3406-e96e-4f3f-bd69-a4235bed3f64} + + + {cb243234-5c4f-4232-b452-ebe6ac3c1625} + + + {5170f2b8-0200-477b-819a-58003d92c966} + + + {16b5b067-7f62-4c9f-9ef3-0ce6229cdc93} + + + {3038e456-c4b3-4512-a03c-c6f102161bf8} + + + {ffdceb6c-8c83-4d5f-8bce-a2b63d591b8c} + + + {e516ff14-a6bd-4547-a9f7-bf2a25bd8b80} + + + {a08223d8-5001-464a-a3e7-0789f732d8f5} + + + {ae9e9e4b-1ccd-432c-b610-d18ceb00b31d} + + + {452ce2e5-1944-414f-aee6-7ccd188a496c} + + + {b8e3886b-4e28-4452-b4e3-31822f7fd043} + + + {05866c8e-84a2-4ff1-ace0-915c7d72f0db} + + + {c4a05de3-89fe-417e-a054-751a5d9d171b} + + + {b0433154-cf07-4ead-b777-917bbb4d553c} + + + + + Resource Files + + + + + Others + + + Others + + + Others + + + + + Addon + + + Addon + + + Addon + + + Addon + + + Addon + + + Addon + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\lua + + + AI\lua + + + AI\lua + + + AI\lua + + + Editor + + + Editor + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Map + + + Editor\Map + + + Editor\Map + + + Editor\Map + + + Editor\Toolkit + + + Editor\Toolkit + + + Editor\Controller + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core\Event + + + Gui\Core\Event + + + Gui\Core\Event + + + Gui\Core\Placer + + + Gui\Core\Placer + + + Gui\Core\Window_Builder + + + Gui\Core\Window_Builder + + + Pathfind + + + Pathfind + + + Pathfind + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting\Plugins + + + Scripting\Plugins + + + Storyscreen + + + Storyscreen + + + Storyscreen + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + utils + + + utils + + + utils + + + utils + + + utils + + + serialization + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests + + + Tests\Gui + + + Tests\Gui + + + Tests\Gui + + + Tests\Gui + + + Tests\Gui + + + Tests\Utils + + + Tests\Utils + + + Tests\Utils + + + Tests\Utils + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Generators + + + Generators + + + Generators + + + Generators + + + Generators + + + Generators + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + SDL + + + SDL + + + SDL + + + SDL + + + SDL + + + SDL + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Xbrz + + + Desktop + + + Desktop + + + Desktop + + + Desktop + + + Desktop + + + Desktop + + + Help + + + Help + + + Help + + + Help + + + Help + + + Help + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Terrain + + + Terrain + + + Terrain + + + Terrain + + + Terrain + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Map + + + Map + + + Map + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Preferences + + + Preferences + + + Preferences + + + Preferences + + + Preferences + + + Preferences + + + Gui + + + Gui\Core + + + Gui\Core + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs + + + + + Desktop + + + Desktop + + + + + Addon + + + Addon + + + Addon + + + Addon + + + Addon + + + Addon + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\composite + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\default + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\formula + + + AI\lua + + + AI\lua + + + AI\lua + + + AI\lua + + + Editor + + + Editor + + + Editor + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Action\Mouse + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Palette + + + Editor\Map + + + Editor\Map + + + Editor\Map + + + Editor\Map + + + Editor\Toolkit + + + Editor\Toolkit + + + Editor\Controller + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Widgets + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Addon + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Editor + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs\Multiplayer + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Auxiliary\Iterator + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core + + + Gui\Core\Event + + + Gui\Core\Event + + + Gui\Core\Event + + + Gui\Core\Event + + + Gui\Core\Event + + + Gui\Core\Placer + + + Gui\Core\Placer + + + Gui\Core\Window_Builder + + + Gui\Core\Window_Builder + + + Pathfind + + + Pathfind + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting + + + Scripting\Plugins + + + Scripting\Plugins + + + Storyscreen + + + Storyscreen + + + Storyscreen + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Whiteboard + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + Widgets + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + utils + + + serialization + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Actions + + + Generators + + + Generators + + + Generators + + + Generators + + + Generators + + + Generators + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Game_Events + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + Hotkeys + + + SDL + + + SDL + + + SDL + + + SDL + + + SDL + + + SDL + + + SDL + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Game_Initialization + + + Xbrz + + + Xbrz + + + Desktop + + + Desktop + + + Desktop + + + Desktop + + + Desktop + + + Desktop + + + Help + + + Help + + + Help + + + Help + + + Help + + + Help + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Formula + + + Terrain + + + Terrain + + + Terrain + + + Terrain + + + Terrain + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Units + + + Map + + + Map + + + Map + + + Map + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font + + + Font\Pango + + + Font\Pango + + + Font\Pango + + + Font\Pango + + + Preferences + + + Preferences + + + Preferences + + + Preferences + + + Preferences + + + Preferences + + + Gui + + + Gui\Core + + + Gui\Core + + + Gui\Dialogs\Multiplayer + + + Gui\Dialogs + + + + Gui\Widgets + + + + Terrain + + + Desktop + + + Desktop + + + + + + Tests + + + Tests\Utils + + + Tests\Utils + + + Tests\Utils + + + Tests\Utils + + + Tests\Utils + + + \ No newline at end of file diff --git a/projectfiles/VC16/wesnothd.vcxproj b/projectfiles/VC16/wesnothd.vcxproj new file mode 100644 index 000000000000..48add186d462 --- /dev/null +++ b/projectfiles/VC16/wesnothd.vcxproj @@ -0,0 +1,424 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + ReleaseDEBUG + Win32 + + + ReleaseDEBUG + x64 + + + Release + Win32 + + + Release + x64 + + + + {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE} + wesnothd + Win32Proj + 10.0 + + + + Application + v142 + NotSet + true + + + Application + v142 + NotSet + true + + + Application + v142 + NotSet + true + + + Application + v142 + NotSet + true + + + Application + v142 + NotSet + + + Application + v142 + NotSet + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.30501.0 + + + true + + + true + + + false + + + false + + + false + + + false + + + $(SolutionDir)..\..\ + + + $(SolutionDir)..\..\ + + + $(SolutionDir)..\..\ + + + $(SolutionDir)..\..\ + + + $(SolutionDir)..\..\ + + + $(SolutionDir)..\..\ + + + + $(IntDir)BuildLog-wesnothd.htm + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + false + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + false + Level4 + ProgramDatabase + 4503;4244;4127;4512;4003;4068;%(DisableSpecificWarnings) + true + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + /SAFESEH:NO %(AdditionalOptions) + winmm.lib;ws2_32.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + true + Console + + + + + $(IntDir)BuildLog-wesnothd.htm + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + false + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + true + Level4 + ProgramDatabase + 4503;4244;4127;4512;4003;4068;%(DisableSpecificWarnings) + true + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + /SAFESEH:NO %(AdditionalOptions) + winmm.lib;ws2_32.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + true + Console + + + + + $(IntDir)BuildLog-wesnothd.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + false + Level3 + ProgramDatabase + 4503;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + winmm.lib;ws2_32.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + false + Console + true + true + UseLinkTimeCodeGeneration + + + + + $(IntDir)BuildLog-wesnothd.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + true + Level3 + ProgramDatabase + 4503;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + winmm.lib;ws2_32.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + false + Console + true + true + UseLinkTimeCodeGeneration + + + + + $(IntDir)BuildLog-wesnothd.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + false + Level3 + ProgramDatabase + 4503;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + winmm.lib;ws2_32.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + true + Console + true + true + UseLinkTimeCodeGeneration + + + + + $(IntDir)BuildLog-wesnothd.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WINXP;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + true + Level3 + ProgramDatabase + 4503;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + winmm.lib;ws2_32.lib;Shlwapi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + true + Console + true + true + UseLinkTimeCodeGeneration + + + + + + + + + + + + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + 4706;4458;%(DisableSpecificWarnings) + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + $(IntDir)Server\ + + + + + + + + + + + + + + + + + + + + + {4a16638b-127b-4ae8-8e0b-4b211b96f976} + false + + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/wesnothd.vcxproj.filters b/projectfiles/VC16/wesnothd.vcxproj.filters new file mode 100644 index 000000000000..7481326747b8 --- /dev/null +++ b/projectfiles/VC16/wesnothd.vcxproj.filters @@ -0,0 +1,109 @@ + + + + + {9fc909e9-c189-489c-bd64-0286fe4f520c} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + {8e764f99-5e5d-4762-b5e1-c3c19a9d9d75} + ii;i + + + {8b7cb799-913f-4247-a713-5bd88a6885d4} + + + + + Resource Files + + + + + Others + + + Server + + + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + + + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + Server + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/wesnothlib.vcxproj b/projectfiles/VC16/wesnothlib.vcxproj new file mode 100644 index 000000000000..4b96dc1b3e71 --- /dev/null +++ b/projectfiles/VC16/wesnothlib.vcxproj @@ -0,0 +1,311 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + ReleaseDEBUG + Win32 + + + ReleaseDEBUG + x64 + + + Release + Win32 + + + Release + x64 + + + + {4A16638B-127B-4AE8-8E0B-4B211B96F976} + wesnothlib + 10.0 + + + + StaticLibrary + v142 + MultiByte + true + + + StaticLibrary + v142 + MultiByte + true + + + StaticLibrary + v142 + MultiByte + true + + + StaticLibrary + v142 + MultiByte + true + + + StaticLibrary + v142 + MultiByte + + + StaticLibrary + v142 + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.30501.0 + + + + + + $(IntDir)BuildLog.htm + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;NOMINMAX;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + false + Level4 + ProgramDatabase + 4503;4351;4244;4127;4512;4003;4068;%(DisableSpecificWarnings) + true + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + $(IntDir)BuildLog.htm + + + Disabled + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;NOMINMAX;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + UninitializedLocalUsageCheck + MultiThreadedDebugDLL + true + Level4 + ProgramDatabase + 4503;4351;4244;4127;4512;4003;4068;%(DisableSpecificWarnings) + true + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + $(IntDir)BuildLog-wesnothlib.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;NOMINMAX;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + false + Level3 + ProgramDatabase + true + 4503;4351;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + $(IntDir)BuildLog-wesnothlib.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;NOMINMAX;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + true + Level3 + ProgramDatabase + true + 4503;4351;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + $(IntDir)BuildLog-wesnothlib.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;NOMINMAX;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + false + Level3 + ProgramDatabase + true + 4503;4351;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + $(IntDir)BuildLog-wesnothlib.htm + + + MaxSpeed + true + ..\..\src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;NOMINMAX;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + true + Level3 + ProgramDatabase + true + 4503;4351;4244; + boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) + + + %(AdditionalLibraryDirectories) + + + + + + + + + + + + + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + $(IntDir)Formula\ + + + + 4459;%(DisableSpecificWarnings) + + + + + + + 4706;%(DisableSpecificWarnings) + + + 4706;%(DisableSpecificWarnings) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projectfiles/VC16/wesnothlib.vcxproj.filters b/projectfiles/VC16/wesnothlib.vcxproj.filters new file mode 100644 index 000000000000..4a09af976bfc --- /dev/null +++ b/projectfiles/VC16/wesnothlib.vcxproj.filters @@ -0,0 +1,168 @@ + + + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + {6dc90a51-9e0e-481d-aecb-1504d6f9a21b} + + + {2ce5a818-4bb3-4502-8751-f2d8f3f36527} + + + {36afc638-474c-4646-b7ac-c1d8df8344f2} + + + {dd5bcb3f-5af9-4dce-bcf3-9c23cec65372} + + + {89506bfd-cc4a-4db3-84f4-b90d70040b9c} + + + {ba7645fc-4486-437c-845e-9f30d991e7b6} + + + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + + + + + + + + + + + + + + Font + + + Formula + + + crypt_blowfish + + + Serialization + + + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + Serialization + + + + + + + + + + + + + + + + + + + Font + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + spirit_po + + + Serialization + + + Utils + + + Formula + + + crypt_blowfish + + + Serialization + + + \ No newline at end of file