From 27bfa8fd3ca9da1f783a099af5d61998474d8e0d Mon Sep 17 00:00:00 2001 From: Casey Langen Date: Fri, 3 Feb 2017 18:13:25 -0800 Subject: [PATCH] Tweaked CMakeLists.txt to hush the deprecation warnings because they're getting in the way. Will remove this once we get a new version of boost on macOS. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 25f25c119..47ae48b33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ ExternalProject_Add(taglib INSTALL_COMMAND make install ) -set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++11 -Wno-unused-result") +set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++11 -Wno-unused-result -Wno-deprecated-declarations") set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g") set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")