From e6320a94f372c57eba5d853adf30332745590c00 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 27 Sep 2022 10:53:36 -0700 Subject: [PATCH] Install util/http.hpp (#5893) --- CHANGELOG.md | 1 + src/realm/CMakeLists.txt | 1 + src/realm/util/http.hpp | 17 +++++++++++++++++ 3 files changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b667c198d6..817b2847198 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ ### Internals * Reenable sync benchmark. +* Add util/http.hpp to the release package. ---------------------------------------------- diff --git a/src/realm/CMakeLists.txt b/src/realm/CMakeLists.txt index d1b40710fe9..ab571eb8750 100644 --- a/src/realm/CMakeLists.txt +++ b/src/realm/CMakeLists.txt @@ -233,6 +233,7 @@ set(REALM_INSTALL_HEADERS util/functional.hpp util/future.hpp util/hex_dump.hpp + util/http.hpp util/input_stream.hpp util/inspect.hpp util/interprocess_condvar.hpp diff --git a/src/realm/util/http.hpp b/src/realm/util/http.hpp index 7c6ac014001..eac4a6a7be4 100644 --- a/src/realm/util/http.hpp +++ b/src/realm/util/http.hpp @@ -1,3 +1,20 @@ +/************************************************************************* + * + * Copyright 2022 Realm Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + **************************************************************************/ #ifndef REALM_UTIL_HTTP_HPP #define REALM_UTIL_HTTP_HPP