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_