added core/async/Executor to CMakeLists

This commit is contained in:
lganzzzo 2019-01-02 15:49:23 +02:00
parent 81e134c458
commit be7ef952e4
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,8 @@ add_library(oatpp
core/async/Coroutine.hpp
core/async/Processor.cpp
core/async/Processor.hpp
core/async/Executor.cpp
core/async/Executor.hpp
core/base/CommandLineArguments.cpp
core/base/CommandLineArguments.hpp
core/base/Config.hpp

View File

@ -33,6 +33,8 @@
#include "oatpp/core/collection/LinkedList.hpp"
#include <tuple>
#include <mutex>
#include <condition_variable>
namespace oatpp { namespace async {