Updated build instructions, changelog.

It seems that CMake 3.0.0's GUI sets the toolset to `vc120_xp` by
default, and it can't then be overridden in a CMakeLists.txt. Generating
using the command line is therefore more reliable.
This commit is contained in:
WrinklyNinja
2014-06-21 13:04:45 +01:00
parent 8102d18044
commit 6201967bcb
2 changed files with 15 additions and 3 deletions
+14 -2
View File
@@ -17,7 +17,13 @@ Just build the solution provided by wxWidgets. You may need to change the C/C++
#### yaml-cpp
1. Configure CMake and generate a build system for Visual Studio by running CMake with keys `-DCMAKE_ARCHIVE_OUTPUT_DIRECTORY=build -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=build -DBOOST_ROOT={BOOST_ROOT}`.
1. Configure CMake and generate a build system for Visual Studio by running:
```
mkdir build
cd build
cmake.exe .. -G "Visual Studio 12" -DBOOST_ROOT={BOOST_ROOT} -DMSVC_SHARED_RT=OFF
```
Adapt the commands as necessary for your particular setup.
2. Open the generated solution file, and build it with `Release` configuration.
#### Libloadorder
@@ -28,7 +34,13 @@ Example CMake keys: `-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=build -DCMAKE_ARCHIVE_OUTP
#### Libgit2
1. Configure CMake and generate a build system for Visual Studio by running CMake with keys `-DCMAKE_ARCHIVE_OUTPUT_DIRECTORY=build -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=build -DBUILD_SHARED_LIBS=OFF -DSTATIC_CRT=ON`.
1. Configure CMake and generate a build system for Visual Studio by running:
```
mkdir build
cd build
cmake.exe .. -G "Visual Studio 12" -DBUILD_SHARED_LIBS=OFF -DSTATIC_CRT=ON
```
Adapt the commands as necessary for your particular setup.
2. Open the generated solution file, and build it with `Release` configuration.
#### LOOT
+1 -1
View File
@@ -456,7 +456,7 @@ A copy of the license is included in the file named "GNU FDL v1.3.txt".</blockqu
<li>Added: Conflict filter, drag 'n' drop into requirements, incompatibilities and load after lists, plugin priority display and a simple display mode to the full metadata editor.
<li>Added: Command line parameter for selecting the game LOOT should run for.
<li>Added: Finnish translation.
<li>Removed: Support for Windows XP. Although no change has been made to LOOT itself to remove support, it makes use of libraries that do not support Windows XP or are not built with Windows XP support, and so even if the executable runs, it may not function correctly.
<li>Removed: Support for Windows XP.
<li>Removed: Support for loading BOSS masterlists using the API. This was a leftover from when LOOT was BOSSv3 and backwards compatibility was an issue.
<li>Removed: The ability to open reports in an external browser. This was necessitated by the changes to report generation.
<li>Removed: The MSVC 2013 redistributable requirement.