Просмотр исходного кода

CMakeLists: Correct boost asio disabling define name

Previously the name of the define was missing the BOOST_ prefix.
Lioncash 6 лет назад
Родитель
Сommit
b971b82275
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -124,7 +124,7 @@ if (MSVC)
     # cubeb and boost still make use of deprecated result_of.
     # cubeb and boost still make use of deprecated result_of.
     add_definitions(-D_HAS_DEPRECATED_RESULT_OF)
     add_definitions(-D_HAS_DEPRECATED_RESULT_OF)
     # boost asio's concept usage doesn't play nicely with MSVC yet.
     # boost asio's concept usage doesn't play nicely with MSVC yet.
-    add_definitions(-DASIO_DISABLE_CONCEPTS)
+    add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS)
 else()
 else()
     set(CMAKE_CXX_STANDARD 17)
     set(CMAKE_CXX_STANDARD 17)
     set(CMAKE_CXX_STANDARD_REQUIRED ON)
     set(CMAKE_CXX_STANDARD_REQUIRED ON)