Update libloadorder requirement

Use the v7.0.0 release, which brings performance improvements,
bug fixes and thread safety.
This commit is contained in:
Oliver Hamlet
2015-12-07 15:33:08 +00:00
parent 32b6d27cbb
commit 038587c3e2
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ LOOT requires the following C/C++ libraries (version numbers used in latest deve
* [Google Test](https://github.com/google/googletest) v1.7: Required to build the tests, but not the API or the GUI.
* [Libespm](http://github.com/WrinklyNinja/libespm) v2.5.0
* [Libgit2](http://libgit2.github.com/) v0.23.4
* [Libloadorder](http://github.com/WrinklyNinja/libloadorder) revision 3a7d694
* [Pseudosem](http://github.com/WrinklyNinja/pseudosem): v1.0.1
* [Libloadorder](http://github.com/WrinklyNinja/libloadorder) v7.0.0
* [Pseudosem](http://github.com/WrinklyNinja/pseudosem) v1.0.1
* [yaml-cpp](http://github.com/WrinklyNinja/yaml-cpp): Use the `patched-for-loot` branch.
In addition, LOOT's UI relies on the web libraries below, which can be fetched by running `bower install` from the repository root.
+2 -2
View File
@@ -25,8 +25,8 @@ make git2
cd ../..
# Build libloadorder
wget https://github.com/WrinklyNinja/libloadorder/archive/3a7d694e2eab9957b745fe828da1ed00f537c989.tar.gz -O - | tar -xz
mv libloadorder-3a7d694e2eab9957b745fe828da1ed00f537c989 libloadorder
wget https://github.com/WrinklyNinja/libloadorder/archive/7.0.0.tar.gz -O - | tar -xz
mv libloadorder-7.0.0 libloadorder
mkdir libloadorder/build && cd libloadorder/build
cmake .. -DPROJECT_ARCH=64 -DPROJECT_STATIC_RUNTIME=OFF -DBUILD_SHARED_LIBS=OFF -DGTEST_ROOT=../gtest-1.7.0
make loadorder64