From 0c3cdd3a8663f4b3d9d5cc3e0959350d44995873 Mon Sep 17 00:00:00 2001 From: Pentarctagon Date: Wed, 1 Jul 2020 15:42:43 -0500 Subject: [PATCH] Remove VC14 (VS2015/VS2017 project files). Reasons: * These projectfiles are still 32-bit, whereas all other builds for all other OSes are now 64-bit. * Relatedly, these projectfiles are dependent on the libraries kept at the aquileia/external repository. * VS2019 is still listed as supporting Windows 7, so there is a minimal likelihood of developers not being able to use VS2019. * The VS2019 projectfiles instead use vcpkg to get the required dependencies, which is easier to setup than the aquileia/external prebuilt libraries. * It's one less thing that needs to be updated whenever source files are added/moved/removed. * It's two fewer jobs that Travis needs to run, which means Travis builds will finish more quickly. --- .gitignore | 1 - .travis.yml | 8 - INSTALL.md | 2 +- projectfiles/VC14/README.md | 64 - projectfiles/VC14/campaignd.vcxproj | 124 - projectfiles/VC14/campaignd.vcxproj.filters | 65 - .../VC14/files_with_deactivated_warnings.txt | 9 - projectfiles/VC14/liblua.vcxproj | 188 - projectfiles/VC14/liblua.vcxproj.filters | 197 - projectfiles/VC14/wesnoth.sln | 72 - projectfiles/VC14/wesnoth.vcxproj | 4123 ----------------- projectfiles/VC14/wesnoth.vcxproj.filters | 3046 ------------ projectfiles/VC14/wesnothd.vcxproj | 255 - projectfiles/VC14/wesnothd.vcxproj.filters | 103 - projectfiles/VC14/wesnothlib.vcxproj | 267 -- projectfiles/VC14/wesnothlib.vcxproj.filters | 189 - utils/travis/steps/install.sh | 2 +- utils/travis/steps/script.sh | 60 +- 18 files changed, 26 insertions(+), 8749 deletions(-) delete mode 100644 projectfiles/VC14/README.md delete mode 100644 projectfiles/VC14/campaignd.vcxproj delete mode 100644 projectfiles/VC14/campaignd.vcxproj.filters delete mode 100644 projectfiles/VC14/files_with_deactivated_warnings.txt delete mode 100644 projectfiles/VC14/liblua.vcxproj delete mode 100644 projectfiles/VC14/liblua.vcxproj.filters delete mode 100644 projectfiles/VC14/wesnoth.sln delete mode 100644 projectfiles/VC14/wesnoth.vcxproj delete mode 100644 projectfiles/VC14/wesnoth.vcxproj.filters delete mode 100644 projectfiles/VC14/wesnothd.vcxproj delete mode 100644 projectfiles/VC14/wesnothd.vcxproj.filters delete mode 100644 projectfiles/VC14/wesnothlib.vcxproj delete mode 100644 projectfiles/VC14/wesnothlib.vcxproj.filters diff --git a/.gitignore b/.gitignore index 98e2f8fd98f4..e11b8e3bdc69 100644 --- a/.gitignore +++ b/.gitignore @@ -50,7 +50,6 @@ projectfiles/**/*objs* # Visual Studio projectfiles/VC* -!projectfiles/VC14 !projectfiles/VC16 projectfiles/VC*/.vs/ projectfiles/VC*/*.vc.*db diff --git a/.travis.yml b/.travis.yml index 6466b7e268a5..575b6e14b4f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,6 @@ cache: directories: - $HOME/build-cache - $HOME/flatpak-cache - - $TRAVIS_BUILD_DIR/projectfiles/VC14/Debug - - $TRAVIS_BUILD_DIR/projectfiles/VC14/Release - $TRAVIS_BUILD_DIR/projectfiles/VC16/Debug - $TRAVIS_BUILD_DIR/projectfiles/VC16/Release - $HOME/vcpkg @@ -23,12 +21,6 @@ env: jobs: include: - - os: windows - env: TOOL=msbuild NLS=false IMAGE=VC14 BRANCH=master CFG=Debug - - - os: windows - env: TOOL=msbuild NLS=false IMAGE=VC14 BRANCH=master CFG=Release - - os: windows env: TOOL=msbuild NLS=false IMAGE=VC16 BRANCH=master CFG=Debug UPLOAD=true diff --git a/INSTALL.md b/INSTALL.md index 07345d1fa3f1..696ab6677fa4 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -78,7 +78,7 @@ rebuild Wesnoth frequently (i.e. for development and testing). See [here](https://github.com/wesnoth/wesnoth/blob/master/projectfiles/Xcode/README.md) for instructions on using Xcode. ### Windows -See [here](https://github.com/wesnoth/wesnoth/blob/master/projectfiles/VC14/README.md) for instructions on using Visual Studio 2015/2017, or [here](https://github.com/wesnoth/wesnoth/blob/master/projectfiles/VC16/README.md) for (much simpler) instructions on using Visual Studio 2019. +See [here](https://github.com/wesnoth/wesnoth/blob/master/projectfiles/VC16/README.md) for instructions on using Visual Studio 2019. ## SCons Build diff --git a/projectfiles/VC14/README.md b/projectfiles/VC14/README.md deleted file mode 100644 index 95f1b2d708ba..000000000000 --- a/projectfiles/VC14/README.md +++ /dev/null @@ -1,64 +0,0 @@ -# Compiling Wesnoth on Windows using Visual Studio - -The current minimum Visual Studio version required for compiling Wesnoth is Visual Studio 2015 (VC14). -Compilation is also supported with Visual Studio 2017 (VC15) 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/VC14` 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 VC14 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. **Optional:** By default, the Debug configuration is selected. This type of build is only good if you -intend to work on the game's engine or wish to get a stacktrace for a bug report. If you're only interested -in playing the game, a Release build is faster. You can switch the configurations in the toolbar at the top -of the screen. - -7. That's it! You can now go ahead and start the build (`Build → Build Solution`). - -8. **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/VC14/campaignd.vcxproj b/projectfiles/VC14/campaignd.vcxproj deleted file mode 100644 index a6cbcf30548a..000000000000 --- a/projectfiles/VC14/campaignd.vcxproj +++ /dev/null @@ -1,124 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD} - campaignd - - - - Application - true - v141 - NotSet - - - Application - false - v141 - true - NotSet - - - - - - - - - - - - - $(Configuration)\campaignd\ - - - - Level4 - Disabled - true - ..\..\src;..\..\..\external\include - _CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;_SCL_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;%(PreprocessorDefinitions) - 4244;4127 - - - DebugFastLink - ..\..\..\external\lib - Shlwapi.lib;libcrypto.lib;%(AdditionalDependencies) - - - - - Level4 - MaxSpeed - true - true - true - ..\..\src;..\..\..\external\include - _CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;_SCL_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;%(PreprocessorDefinitions) - 4244;4127 - - - DebugFastLink - true - true - ..\..\..\external\lib - Shlwapi.lib;libcrypto.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) - - - - - - diff --git a/projectfiles/VC14/campaignd.vcxproj.filters b/projectfiles/VC14/campaignd.vcxproj.filters deleted file mode 100644 index 5f63fe27321e..000000000000 --- a/projectfiles/VC14/campaignd.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {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/VC14/files_with_deactivated_warnings.txt b/projectfiles/VC14/files_with_deactivated_warnings.txt deleted file mode 100644 index ab2d7e5f9a25..000000000000 --- a/projectfiles/VC14/files_with_deactivated_warnings.txt +++ /dev/null @@ -1,9 +0,0 @@ -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/VC14/liblua.vcxproj b/projectfiles/VC14/liblua.vcxproj deleted file mode 100644 index 1bc1b94e9c43..000000000000 --- a/projectfiles/VC14/liblua.vcxproj +++ /dev/null @@ -1,188 +0,0 @@ - - - - - Debug - Win32 - - - ReleaseDEBUG - Win32 - - - Release - Win32 - - - - {01AE7104-A4B1-428E-BA7C-460FE656AE5C} - lualib - Win32Proj - - - - StaticLibrary - v141 - Unicode - true - - - StaticLibrary - v141 - Unicode - true - - - StaticLibrary - v141 - Unicode - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration)\ - $(Configuration)\$(ProjectName)\ - - - $(SolutionDir)$(Configuration)\ - $(Configuration)\$(ProjectName)\ - - - $(SolutionDir)$(Configuration)\ - $(Configuration)\$(ProjectName)\ - - - - Disabled - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - false - UninitializedLocalUsageCheck - MultiThreadedDebugDLL - true - TurnOffAllWarnings - EditAndContinue - true - ../src/wesnoth_lua_config.h;%(ForcedIncludeFiles) - - - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - - - - - MaxSpeed - true - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - TurnOffAllWarnings - ProgramDatabase - ../src/wesnoth_lua_config.h;%(ForcedIncludeFiles) - - - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - - - - - MaxSpeed - true - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - true - true - TurnOffAllWarnings - ProgramDatabase - ../src/wesnoth_lua_config.h;%(ForcedIncludeFiles) - - - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/projectfiles/VC14/liblua.vcxproj.filters b/projectfiles/VC14/liblua.vcxproj.filters deleted file mode 100644 index 3f6dc54fb5a2..000000000000 --- a/projectfiles/VC14/liblua.vcxproj.filters +++ /dev/null @@ -1,197 +0,0 @@ - - - - - {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/VC14/wesnoth.sln b/projectfiles/VC14/wesnoth.sln deleted file mode 100644 index e3a94c675f81..000000000000 --- a/projectfiles/VC14/wesnoth.sln +++ /dev/null @@ -1,72 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.40629.0 -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}") = "campaignd", "campaignd.vcxproj", "{DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - ReleaseDEBUG|Win32 = ReleaseDEBUG|Win32 - Test_Debug|Win32 = Test_Debug|Win32 - Test_Release|Win32 = Test_Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Debug|Win32.ActiveCfg = Debug|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Debug|Win32.Build.0 = Debug|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Release|Win32.ActiveCfg = Release|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Release|Win32.Build.0 = Release|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.ReleaseDEBUG|Win32.ActiveCfg = ReleaseDEBUG|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.ReleaseDEBUG|Win32.Build.0 = ReleaseDEBUG|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Debug|Win32.ActiveCfg = Test_Debug|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Debug|Win32.Build.0 = Test_Debug|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Release|Win32.ActiveCfg = Test_Release|Win32 - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512}.Test_Release|Win32.Build.0 = Test_Release|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Debug|Win32.ActiveCfg = Debug|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Debug|Win32.Build.0 = Debug|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Release|Win32.ActiveCfg = Release|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Release|Win32.Build.0 = Release|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.ReleaseDEBUG|Win32.ActiveCfg = ReleaseDEBUG|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.ReleaseDEBUG|Win32.Build.0 = ReleaseDEBUG|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Test_Debug|Win32.ActiveCfg = Debug|Win32 - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE}.Test_Release|Win32.ActiveCfg = Release|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Debug|Win32.ActiveCfg = Debug|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Debug|Win32.Build.0 = Debug|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Release|Win32.ActiveCfg = Release|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Release|Win32.Build.0 = Release|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.ReleaseDEBUG|Win32.ActiveCfg = ReleaseDEBUG|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.ReleaseDEBUG|Win32.Build.0 = ReleaseDEBUG|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Debug|Win32.ActiveCfg = Debug|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Debug|Win32.Build.0 = Debug|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Release|Win32.ActiveCfg = Release|Win32 - {4A16638B-127B-4AE8-8E0B-4B211B96F976}.Test_Release|Win32.Build.0 = Release|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Debug|Win32.ActiveCfg = Debug|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Debug|Win32.Build.0 = Debug|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Release|Win32.ActiveCfg = Release|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Release|Win32.Build.0 = Release|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.ReleaseDEBUG|Win32.ActiveCfg = ReleaseDEBUG|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.ReleaseDEBUG|Win32.Build.0 = ReleaseDEBUG|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Test_Debug|Win32.ActiveCfg = Debug|Win32 - {01AE7104-A4B1-428E-BA7C-460FE656AE5C}.Test_Release|Win32.ActiveCfg = Release|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Debug|Win32.ActiveCfg = Debug|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Debug|Win32.Build.0 = Debug|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Release|Win32.ActiveCfg = Release|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Release|Win32.Build.0 = Release|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.ReleaseDEBUG|Win32.ActiveCfg = Release|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.ReleaseDEBUG|Win32.Build.0 = Release|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Test_Debug|Win32.ActiveCfg = Debug|Win32 - {DEACBC05-182F-4D9B-A31C-B9A9098DFAAD}.Test_Release|Win32.ActiveCfg = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/projectfiles/VC14/wesnoth.vcxproj b/projectfiles/VC14/wesnoth.vcxproj deleted file mode 100644 index b29784718fce..000000000000 --- a/projectfiles/VC14/wesnoth.vcxproj +++ /dev/null @@ -1,4123 +0,0 @@ - - - - - Debug - Win32 - - - ReleaseDEBUG - Win32 - - - Release - Win32 - - - Test_Debug - Win32 - - - Test_Release - Win32 - - - - {65ACA13F-5F5C-4768-A89A-ECF6C16F1512} - wesnoth - Win32Proj - - - - Application - v141 - NotSet - true - - - Application - v141 - NotSet - true - - - Application - v141 - NotSet - - - Application - v141 - NotSet - true - - - Application - v141 - NotSet - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)\..\..\ - $(Configuration)\ - 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 - - - - $(IntDir)BuildLog-wesnoth.htm - - - Disabled - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;DEBUG_LUA;%(PreprocessorDefinitions) - UninitializedLocalUsageCheck - MultiThreadedDebugDLL - false - StreamingSIMDExtensions2 - Level4 - EditAndContinue - 4503;4351;4250;4244;4127;4127;4512;4003;4068;%(DisableSpecificWarnings) - true - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - 4239 - /utf-8 %(AdditionalOptions) - - - _MSC_VER;%(PreprocessorDefinitions) - - - /SAFESEH:NO %(AdditionalOptions) - SDL2main.lib;SDL2.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;libcrypto.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng.lib;libogg.lib;libvorbis.lib;libvorbisfile.lib;$(IntDir)liblua.lib;Shlwapi.lib;%(AdditionalDependencies) - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - MSVCR90;MSVCRT;%(IgnoreSpecificDefaultLibraries) - DebugFastLink - Windows - MachineX86 - - - ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) - - - - - $(IntDir)BuildLog-wesnoth.htm - - - MaxSpeed - true - false - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - false - true - StreamingSIMDExtensions2 - Level4 - ProgramDatabase - true - 4503;4351;4250;4244;4127; - 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;libcrypto.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng.lib;libogg.lib;libvorbis.lib;libvorbisfile.lib;$(IntDir)liblua.lib;Shlwapi.lib;%(AdditionalDependencies) - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - false - Windows - true - true - UseFastLinkTimeCodeGeneration - MachineX86 - - - ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) - - - - - $(IntDir)BuildLog-wesnoth.htm - - - Disabled - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;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 - StreamingSIMDExtensions2 - Level4 - EditAndContinue - 4503;4351;4250;4244;4127;4127;4512;%(DisableSpecificWarnings) - true - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - 4239 - /utf-8 %(AdditionalOptions) - - - _MSC_VER;%(PreprocessorDefinitions) - - - SDL2main.lib;SDL2.lib;SDL2_image.lib;SDL2_ttf.lib;SDL2_mixer.lib;libcrypto.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng.lib;libogg.lib;libvorbis.lib;libvorbisfile.lib;Debug\liblua.lib;Shlwapi.lib;%(AdditionalDependencies) - $(OutDir)test.exe - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - DebugFastLink - Console - MachineX86 - - - ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) - - - - - $(IntDir)BuildLog-wesnoth.htm - - - MaxSpeed - true - false - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;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 - StreamingSIMDExtensions2 - Level4 - ProgramDatabase - true - 4503;4351;4250;4244;4127; - 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;libcrypto.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng.lib;libogg.lib;libvorbis.lib;libvorbisfile.lib;Release\liblua.lib;Shlwapi.lib;%(AdditionalDependencies) - $(OutDir)test.exe - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - false - Console - true - true - UseFastLinkTimeCodeGeneration - MachineX86 - - - ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) - - - - - $(IntDir)BuildLog-wesnoth.htm - - - MaxSpeed - true - false - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;HAVE_PYTHON;USE_GZIP;NO_HAVE_FRIBIDI;HAVE_LIBPNG;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - false - true - StreamingSIMDExtensions2 - Level4 - ProgramDatabase - true - 4503;4351;4250;4244;4127; - 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;libcrypto.lib;cairo.lib;winmm.lib;ws2_32.lib;pango-1.0.lib;pangocairo-1.0.lib;gobject-2.0.lib;glib-2.0.lib;libpng.lib;libogg.lib;libvorbis.lib;libvorbisfile.lib;$(IntDir)liblua.lib;Shlwapi.lib;%(AdditionalDependencies) - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - DebugFastLink - Windows - true - true - UseFastLinkTimeCodeGeneration - MachineX86 - - - ../../packaging/windows/wesnoth.exe.manifest;%(AdditionalManifestFiles) - - - - - - - - - - - - - $(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\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\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\ - - - $(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)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\ - - - $(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 - - - - - - diff --git a/projectfiles/VC14/wesnoth.vcxproj.filters b/projectfiles/VC14/wesnoth.vcxproj.filters deleted file mode 100644 index 9011d3eb8e52..000000000000 --- a/projectfiles/VC14/wesnoth.vcxproj.filters +++ /dev/null @@ -1,3046 +0,0 @@ - - - - - {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} - - - {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 - - - - - 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\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\Dialogs\Multiplayer - - - Gui\Auxiliary - - - Gui\Auxiliary\Iterator - - - Gui\Auxiliary\Iterator - - - Gui\Auxiliary\Iterator - - - Gui\Auxiliary\Iterator - - - Gui - - - 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\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 - - - 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 - - - utils - - - 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 - - - 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 - - - - - 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\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\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\Dialogs\Multiplayer - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - Game_Events - - - Hotkeys - - - Hotkeys - - - Hotkeys - - - Hotkeys - - - Hotkeys - - - Hotkeys - - - Hotkeys - - - SDL - - - 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 - - - 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 - - - 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 - - - - - Tests - - - Tests\Utils - - - Tests\Utils - - - Tests\Utils - - - Tests\Utils - - - Tests\Utils - - - diff --git a/projectfiles/VC14/wesnothd.vcxproj b/projectfiles/VC14/wesnothd.vcxproj deleted file mode 100644 index f813e9d16eaa..000000000000 --- a/projectfiles/VC14/wesnothd.vcxproj +++ /dev/null @@ -1,255 +0,0 @@ - - - - - Debug - Win32 - - - ReleaseDEBUG - Win32 - - - Release - Win32 - - - - {72F28A4A-A6A2-4C49-8141-7CD0DFA9ECCE} - wesnothd - Win32Proj - - - - Application - v141 - NotSet - true - - - Application - v141 - NotSet - true - - - Application - v141 - NotSet - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)\..\..\ - $(Configuration)\wesnothd\ - true - - - $(SolutionDir)..\..\ - $(Configuration)\wesnothd\ - false - - - $(SolutionDir)\..\..\ - $(Configuration)\wesnothd\ - false - - - $(SolutionDir)..\..\ - - - $(SolutionDir)..\..\ - - - $(SolutionDir)..\..\ - - - - $(IntDir)BuildLog-wesnothd.htm - - - Disabled - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - false - UninitializedLocalUsageCheck - MultiThreadedDebugDLL - true - Level4 - EditAndContinue - 4503;4244;4127;4127;4512;4003;4068;%(DisableSpecificWarnings) - true - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - - - /SAFESEH:NO %(AdditionalOptions) - winmm.lib;ws2_32.lib;Shlwapi.lib;libcrypto.lib;%(AdditionalDependencies) - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - DebugFastLink - Console - MachineX86 - - - - - $(IntDir)BuildLog-wesnothd.htm - - - MaxSpeed - true - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - true - - - Level4 - ProgramDatabase - 4503;4244;4127; - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - - - winmm.lib;ws2_32.lib;Shlwapi.lib;libcrypto.lib;%(AdditionalDependencies) - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - false - Console - true - true - UseFastLinkTimeCodeGeneration - MachineX86 - - - - - $(IntDir)BuildLog-wesnothd.htm - - - MaxSpeed - true - ..\..\src;..\..\..\external\include;%(AdditionalIncludeDirectories) - WIN32;_WINSOCK_DEPRECATED_NO_WARNINGS;BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=_WIN32_WINNT_WIN7;HAVE_PYTHON;USE_GZIP;NOMINMAX;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - true - true - Level4 - ProgramDatabase - 4503;4244;4127; - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - - - winmm.lib;ws2_32.lib;Shlwapi.lib;libcrypto.lib;%(AdditionalDependencies) - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - DebugFastLink - Console - true - true - UseFastLinkTimeCodeGeneration - MachineX86 - - - - - - - - - - - - - - $(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\ - - - - - - - - - - - - - - - - - - - - {4a16638b-127b-4ae8-8e0b-4b211b96f976} - false - - - - - - diff --git a/projectfiles/VC14/wesnothd.vcxproj.filters b/projectfiles/VC14/wesnothd.vcxproj.filters deleted file mode 100644 index 3e7a15215c8f..000000000000 --- a/projectfiles/VC14/wesnothd.vcxproj.filters +++ /dev/null @@ -1,103 +0,0 @@ - - - - - {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 - - - - - diff --git a/projectfiles/VC14/wesnothlib.vcxproj b/projectfiles/VC14/wesnothlib.vcxproj deleted file mode 100644 index c818f9bc49b7..000000000000 --- a/projectfiles/VC14/wesnothlib.vcxproj +++ /dev/null @@ -1,267 +0,0 @@ - - - - - Debug - Win32 - - - ReleaseDEBUG - Win32 - - - Release - Win32 - - - - {4A16638B-127B-4AE8-8E0B-4B211B96F976} - wesnothlib - - - - StaticLibrary - v141 - MultiByte - true - - - StaticLibrary - v141 - MultiByte - true - - - StaticLibrary - v141 - MultiByte - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration)\ - $(Configuration)\$(ProjectName)\ - - - $(SolutionDir)$(Configuration)\ - $(Configuration)\$(ProjectName)\ - - - $(SolutionDir)$(Configuration)\ - $(Configuration)\$(ProjectName)\ - - - - $(IntDir)BuildLog.htm - - - Disabled - ..\..\src;..\..\..\external\include;%(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 - EditAndContinue - 4503;4351;4244;4127;4127;4512;4003;4068;%(DisableSpecificWarnings) - true - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - - - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - - - - - $(IntDir)BuildLog-wesnothlib.htm - - - MaxSpeed - true - ..\..\src;..\..\..\external\include;%(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 - - - Level4 - ProgramDatabase - true - 4503;4351;4244;4127; - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - - - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - - - - - $(IntDir)BuildLog-wesnothlib.htm - - - MaxSpeed - true - ..\..\src;..\..\..\external\include;%(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 - Level4 - ProgramDatabase - true - 4503;4351;4244;4127; - boost-patched/bind/arg.hpp;%(ForcedIncludeFiles) - - - ..\..\..\external\lib;%(AdditionalLibraryDirectories) - - - - - - - - - - - - - $(IntDir)Formula\ - $(IntDir)Formula\ - $(IntDir)Formula\ - - - - - 4459;%(DisableSpecificWarnings) - - - - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - 4706;%(DisableSpecificWarnings) - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - 4706;%(DisableSpecificWarnings) - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - $(IntDir)Serialization\Schema\ - $(IntDir)Serialization\Schema\ - $(IntDir)Serialization\Schema\ - - - $(IntDir)Serialization\Schema\ - $(IntDir)Serialization\Schema\ - $(IntDir)Serialization\Schema\ - - - $(IntDir)Serialization\Schema\ - $(IntDir)Serialization\Schema\ - $(IntDir)Serialization\Schema\ - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - $(IntDir)Serialization\ - $(IntDir)Serialization\ - $(IntDir)Serialization\ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/projectfiles/VC14/wesnothlib.vcxproj.filters b/projectfiles/VC14/wesnothlib.vcxproj.filters deleted file mode 100644 index cb01d7015148..000000000000 --- a/projectfiles/VC14/wesnothlib.vcxproj.filters +++ /dev/null @@ -1,189 +0,0 @@ - - - - - {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} - - - {70c53e2e-736c-4429-a18c-b4ded4d7c531} - - - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization\Schema - - - Serialization\Schema - - - Serialization\Schema - - - - - - - - - - - - - - - - crypt_blowfish - - - Font - - - Formula - - - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization - - - Serialization\Schema - - - Serialization\Schema - - - Serialization\Schema - - - - - - - - - - - - - - - - - - - crypt_blowfish - - - Font - - - Formula - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - spirit_po - - - Utils - - - \ No newline at end of file diff --git a/utils/travis/steps/install.sh b/utils/travis/steps/install.sh index 5b52d8eea84d..b3be0e49ab72 100755 --- a/utils/travis/steps/install.sh +++ b/utils/travis/steps/install.sh @@ -41,7 +41,7 @@ elif [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install visualstudio2019-workload-vctools fi - if [[ "$IMAGE" == "VC14" || ( "$IMAGE" == "VC16" && -d "$HOME/vcpkg/installed" ) ]]; then + if [[ "$IMAGE" == "VC16" && -d "$HOME/vcpkg/installed" ]]; then choco install sqlite choco install python --version=3.6.8 cd /c/Python36 diff --git a/utils/travis/steps/script.sh b/utils/travis/steps/script.sh index ce9ab31eff86..2b05168372fd 100755 --- a/utils/travis/steps/script.sh +++ b/utils/travis/steps/script.sh @@ -18,45 +18,33 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then exit $BUILD_RET elif [ "$TRAVIS_OS_NAME" = "windows" ]; then - if [ "$IMAGE" == "VC16" ]; then - if [ ! -d "$HOME/vcpkg/installed" ]; then - cd "$HOME" - git clone --depth=1 https://github.com/microsoft/vcpkg.git vcpkg - cd vcpkg - cmd.exe //C bootstrap-vcpkg.bat - cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' amd64 '&&' vcpkg integrate install - alias make="make -j4" - ./vcpkg install sdl2:x64-windows sdl2-image:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows bzip2:x64-windows zlib:x64-windows pango:x64-windows cairo:x64-windows fontconfig:x64-windows libvorbis:x64-windows libogg:x64-windows boost-filesystem:x64-windows boost-iostreams:x64-windows boost-locale:x64-windows boost-random:x64-windows boost-regex:x64-windows boost-asio:x64-windows boost-program-options:x64-windows boost-system:x64-windows boost-thread:x64-windows boost-bimap:x64-windows boost-multi-array:x64-windows boost-ptr-container:x64-windows boost-logic:x64-windows boost-format:x64-windows & - waitforpid=$! - while kill -0 $waitforpid - do - echo "vcpkg install in progress with pid $waitforpid ..." - sleep 60 - done - rm -R downloads - rm -R buildtrees - echo "Built dependencies, exiting now to cache them. Please restart the job." - exit 1 - else - cd "$HOME/vcpkg" - cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' amd64 '&&' vcpkg integrate install - fi - - cd $TRAVIS_BUILD_DIR - cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' amd64 '&&' MSBuild.exe projectfiles/$IMAGE/wesnoth.sln -p:Configuration=$CFG -p:Platform=Win64 - BUILD_RET=$? + if [ ! -d "$HOME/vcpkg/installed" ]; then + cd "$HOME" + git clone --depth=1 https://github.com/microsoft/vcpkg.git vcpkg + cd vcpkg + cmd.exe //C bootstrap-vcpkg.bat + cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' amd64 '&&' vcpkg integrate install + alias make="make -j4" + ./vcpkg install sdl2:x64-windows sdl2-image:x64-windows sdl2-mixer:x64-windows sdl2-ttf:x64-windows bzip2:x64-windows zlib:x64-windows pango:x64-windows cairo:x64-windows fontconfig:x64-windows libvorbis:x64-windows libogg:x64-windows boost-filesystem:x64-windows boost-iostreams:x64-windows boost-locale:x64-windows boost-random:x64-windows boost-regex:x64-windows boost-asio:x64-windows boost-program-options:x64-windows boost-system:x64-windows boost-thread:x64-windows boost-bimap:x64-windows boost-multi-array:x64-windows boost-ptr-container:x64-windows boost-logic:x64-windows boost-format:x64-windows & + waitforpid=$! + while kill -0 $waitforpid + do + echo "vcpkg install in progress with pid $waitforpid ..." + sleep 60 + done + rm -R downloads + rm -R buildtrees + echo "Built dependencies, exiting now to cache them. Please restart the job." + exit 1 else - cd .. - wget https://github.com/aquileia/external/archive/VC15.zip -O VC15.zip - 7z x VC15.zip - mv external-VC15 external - cd $TRAVIS_BUILD_DIR - export PATH=$PATH":$TRAVIS_BUILD_DIR/../external/dll" - - cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' x86 '&&' MSBuild.exe projectfiles/$IMAGE/wesnoth.sln -p:Configuration=$CFG -p:Platform=Win32 - BUILD_RET=$? + cd "$HOME/vcpkg" + cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' amd64 '&&' vcpkg integrate install fi + cd $TRAVIS_BUILD_DIR + cmd.exe //C 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat' amd64 '&&' MSBuild.exe projectfiles/$IMAGE/wesnoth.sln -p:Configuration=$CFG -p:Platform=Win64 + BUILD_RET=$? + if [ "$UPLOAD_ID" != "" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./utils/travis/sftp wesnoth.exe wesnothd.exe if [ "$CFG" == "Debug" ]; then