diff options
| author | 2019-03-17 23:04:03 +0000 | |
|---|---|---|
| committer | 2019-03-17 23:04:03 +0000 | |
| commit | 51f609fee7934ffcef1c0634c54aa876266e93dd (patch) | |
| tree | 0b347a16d85423107b22c14ee9e5056cd8e47a53 | |
| parent | Merge pull request #2252 from bunnei/move-page-table (diff) | |
| download | yuzu-51f609fee7934ffcef1c0634c54aa876266e93dd.tar.gz yuzu-51f609fee7934ffcef1c0634c54aa876266e93dd.tar.xz yuzu-51f609fee7934ffcef1c0634c54aa876266e93dd.zip | |
CMakeLists: Raise minimum Boost requirement to 1.66.0
Required due to bugfix in boost for changed template resolving rules in GCC 7.3.0 in C++17 mode
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cc24cba6..a4914f37d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -179,9 +179,9 @@ set_property(DIRECTORY APPEND PROPERTY | |||
| 179 | # System imported libraries | 179 | # System imported libraries |
| 180 | # ====================== | 180 | # ====================== |
| 181 | 181 | ||
| 182 | find_package(Boost 1.64.0 QUIET) | 182 | find_package(Boost 1.66.0 QUIET) |
| 183 | if (NOT Boost_FOUND) | 183 | if (NOT Boost_FOUND) |
| 184 | message(STATUS "Boost 1.64.0 or newer not found, falling back to externals") | 184 | message(STATUS "Boost 1.66.0 or newer not found, falling back to externals") |
| 185 | 185 | ||
| 186 | set(BOOST_ROOT "${PROJECT_SOURCE_DIR}/externals/boost") | 186 | set(BOOST_ROOT "${PROJECT_SOURCE_DIR}/externals/boost") |
| 187 | set(Boost_NO_SYSTEM_PATHS OFF) | 187 | set(Boost_NO_SYSTEM_PATHS OFF) |