summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-07-12 17:17:48 -0400
committerGravatar Lioncash2020-07-12 17:17:51 -0400
commitb971b822756f14560d585bb7160ef864974783eb (patch)
treea589e2ac02fcbe4b99feaf8306f895adbff1fe84
parentCMakeLists: Disable concepts in boost asio (diff)
downloadyuzu-b971b822756f14560d585bb7160ef864974783eb.tar.gz
yuzu-b971b822756f14560d585bb7160ef864974783eb.tar.xz
yuzu-b971b822756f14560d585bb7160ef864974783eb.zip
CMakeLists: Correct boost asio disabling define name
Previously the name of the define was missing the BOOST_ prefix.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 174ed1c58..99476c55f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -124,7 +124,7 @@ if (MSVC)
124 # cubeb and boost still make use of deprecated result_of. 124 # cubeb and boost still make use of deprecated result_of.
125 add_definitions(-D_HAS_DEPRECATED_RESULT_OF) 125 add_definitions(-D_HAS_DEPRECATED_RESULT_OF)
126 # boost asio's concept usage doesn't play nicely with MSVC yet. 126 # boost asio's concept usage doesn't play nicely with MSVC yet.
127 add_definitions(-DASIO_DISABLE_CONCEPTS) 127 add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS)
128else() 128else()
129 set(CMAKE_CXX_STANDARD 17) 129 set(CMAKE_CXX_STANDARD 17)
130 set(CMAKE_CXX_STANDARD_REQUIRED ON) 130 set(CMAKE_CXX_STANDARD_REQUIRED ON)