From 38e4b5dfdaf47dcb828fc76ac0b82a314b0cc711 Mon Sep 17 00:00:00 2001 From: Max Payne Date: Sun, 13 May 2018 02:11:39 +0300 Subject: [PATCH] common: fix dependency for console header --- platform/common/CMakeLists.txt | 1 + platform/common/export/common/console.hpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/common/CMakeLists.txt b/platform/common/CMakeLists.txt index ba94b387..0e6f736e 100644 --- a/platform/common/CMakeLists.txt +++ b/platform/common/CMakeLists.txt @@ -5,6 +5,7 @@ if(PLATFORM_NAME STREQUAL host) add_library(platform_common INTERFACE) target_include_directories(platform_common INTERFACE export) + target_link_libraries(platform_common INTERFACE utils) else() # IRQ management must be enabled only if cross-compiling for embedded boards diff --git a/platform/common/export/common/console.hpp b/platform/common/export/common/console.hpp index 8c2a3eb1..fff07be8 100644 --- a/platform/common/export/common/console.hpp +++ b/platform/common/export/common/console.hpp @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ //! \file -//! \brief Common bypas console implementation. +//! \brief Common bypass console implementation. #ifndef PLATFORM_COMMON_CONSOLE_HPP_ #define PLATFORM_COMMON_CONSOLE_HPP_