diff options
Diffstat (limited to 'libtransport/src')
-rw-r--r-- | libtransport/src/hicn/transport/CMakeLists.txt | 14 | ||||
-rw-r--r-- | libtransport/src/hicn/transport/http/facade.h | 6 | ||||
-rw-r--r-- | libtransport/src/hicn/transport/utils/CMakeLists.txt | 1 |
3 files changed, 11 insertions, 10 deletions
diff --git a/libtransport/src/hicn/transport/CMakeLists.txt b/libtransport/src/hicn/transport/CMakeLists.txt index 82d478b65..4314ef908 100644 --- a/libtransport/src/hicn/transport/CMakeLists.txt +++ b/libtransport/src/hicn/transport/CMakeLists.txt @@ -15,13 +15,6 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR) set(ASIO_STANDALONE 1) -configure_file("config.h.in" "config.h" @ONLY) -install( - FILES ${CMAKE_CURRENT_BINARY_DIR}/config.h - DESTINATION include/hicn/transport - COMPONENT lib${LIBTRANSPORT}-dev -) - add_subdirectory(core) add_subdirectory(errors) add_subdirectory(http) @@ -30,6 +23,13 @@ add_subdirectory(portability) add_subdirectory(protocols) add_subdirectory(utils) +configure_file("config.h.in" "config.h" @ONLY) +install( + FILES ${CMAKE_CURRENT_BINARY_DIR}/config.h + DESTINATION include/hicn/transport + COMPONENT lib${LIBTRANSPORT}-dev +) + set (COMPILER_DEFINITIONS "") list(INSERT LIBTRANSPORT_INCLUDE_DIRS 0 diff --git a/libtransport/src/hicn/transport/http/facade.h b/libtransport/src/hicn/transport/http/facade.h index 31c2d1b8d..1551ede3a 100644 --- a/libtransport/src/hicn/transport/http/facade.h +++ b/libtransport/src/hicn/transport/http/facade.h @@ -15,8 +15,8 @@ #pragma once -#include <hicn/transport/http/transport_http_client_connection.h> -#include <hicn/transport/http/transport_http_server_acceptor.h> -#include <hicn/transport/http/transport_http_server_publisher.h> +#include <hicn/transport/http/client_connection.h> +#include <hicn/transport/http/server_acceptor.h> +#include <hicn/transport/http/server_publisher.h> namespace libl4 = transport;
\ No newline at end of file diff --git a/libtransport/src/hicn/transport/utils/CMakeLists.txt b/libtransport/src/hicn/transport/utils/CMakeLists.txt index c6b09fc5f..4ce1e537f 100644 --- a/libtransport/src/hicn/transport/utils/CMakeLists.txt +++ b/libtransport/src/hicn/transport/utils/CMakeLists.txt @@ -30,6 +30,7 @@ list(APPEND HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/string_tokenizer.h ${CMAKE_CURRENT_SOURCE_DIR}/hash.h ${CMAKE_CURRENT_SOURCE_DIR}/uri.h + ${CMAKE_CURRENT_SOURCE_DIR}/chrono_typedefs.h ${CMAKE_CURRENT_SOURCE_DIR}/branch_prediction.h ${CMAKE_CURRENT_SOURCE_DIR}/event_reactor.h ${CMAKE_CURRENT_SOURCE_DIR}/deadline_timer.h |