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.
This commit is contained in:
Casey Langen 2017-02-03 18:13:25 -08:00
parent e21fffac3d
commit 27bfa8fd3c

View File

@ -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")