From: Konrad Lipinski Date: Thu, 8 Nov 2018 14:44:28 +0000 (+0100) Subject: Disable boost coroutine deprecation warning X-Git-Tag: submit/tizen/20181109.001420^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b7b7559bebbdf85effec3663f33f0ff5a692d07;p=platform%2Fcore%2Fsecurity%2Ftef-simulator.git Disable boost coroutine deprecation warning Boost coroutines is now deprecated and replace by coroutines2 which is not in the repo yet. Change-Id: I6096d1129fd7e8aaedbbadf6f1e7f5ad347b2ae4 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 53d6468..f74dc14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,6 +37,8 @@ ADD_DEFINITIONS("-D_SECOS_SIM_") # Disable std::array in boost - daemon is built around boost's implementation of array ADD_DEFINITIONS("-DBOOST_ASIO_DISABLE_STD_ARRAY") +#FIXME coroutines is already deprecated and coroutines2 is not yet in the repo +ADD_DEFINITIONS("-DBOOST_COROUTINES_NO_DEPRECATION_WARNING") ADD_DEFINITIONS("-D_GNU_SOURCE")