From 579add96e151c9770d2ae2020fd785fb9a348ccc Mon Sep 17 00:00:00 2001 From: Joakim Plate Date: Fri, 14 Aug 2026 16:00:09 +0200 Subject: [PATCH] fix: osal_cc install location The osal cc files where installed the root of the install directory instead of the sys subdirectory causing build errors. --- CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 273909c..bd9f551 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,11 +110,9 @@ install(FILES include/sys/osal_cc_msvc.h include/sys/osal_cc_rtk.h include/sys/osal_cc.h - include/osal_log.h - DESTINATION include + DESTINATION include/sys ) - if (CMAKE_PROJECT_NAME STREQUAL OSAL AND BUILD_TESTING) add_subdirectory (test) include(AddGoogleTest)