From 3388c72343a6ac1faa834cb0eb25de76859f2596 Mon Sep 17 00:00:00 2001 From: Nitromelon Date: Sun, 29 May 2022 18:57:18 +0800 Subject: [PATCH] Install missing header file apply.h (#1267) --- CMakeLists.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f8626d90..951a3bad 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -679,14 +679,15 @@ set(NOSQL_HEADERS install(FILES ${NOSQL_HEADERS} DESTINATION ${INSTALL_INCLUDE_DIR}/drogon/nosql) set(DROGON_UTIL_HEADERS - lib/inc/drogon/utils/FunctionTraits.h - lib/inc/drogon/utils/Utilities.h lib/inc/drogon/utils/any.h - lib/inc/drogon/utils/string_view.h - lib/inc/drogon/utils/optional.h + lib/inc/drogon/utils/apply.h lib/inc/drogon/utils/coroutine.h + lib/inc/drogon/utils/FunctionTraits.h lib/inc/drogon/utils/HttpConstraint.h - lib/inc/drogon/utils/OStringStream.h) + lib/inc/drogon/utils/optional.h + lib/inc/drogon/utils/OStringStream.h + lib/inc/drogon/utils/string_view.h + lib/inc/drogon/utils/Utilities.h) install(FILES ${DROGON_UTIL_HEADERS} DESTINATION ${INSTALL_INCLUDE_DIR}/drogon/utils)