Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 9a52a8a

Browse files
committed
fix: module global include dirs not exported correctly
1 parent e83fc7c commit 9a52a8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stack/modules/alp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ MODULE_HEADER_DEFINE(BOOL ${MODULE_PREFIX}_USE_EXTERNAL_MODEM)
3939
MODULE_BUILD_SETTINGS_FILE()
4040

4141
# Export the module-specific header files to the application by using
42-
EXPORT_GLOBAL_INCLUDE_DIRECTORIES(.)
42+
EXPORT_GLOBAL_INCLUDE_DIRECTORIES(./inc)
4343

4444
SET(sources
4545
alp_layer.c

stack/modules/d7ap/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ MODULE_HEADER_DEFINE(BOOL ${MODULE_PREFIX}_EM_LOG_ENABLED)
8484
MODULE_BUILD_SETTINGS_FILE()
8585

8686
#Export the module-specific header files to the application by using
87-
EXPORT_GLOBAL_INCLUDE_DIRECTORIES(.)
87+
EXPORT_GLOBAL_INCLUDE_DIRECTORIES(./inc)
8888

8989
#By convention, each module should generate a single 'static' library that can be included by the application
9090
ADD_LIBRARY(d7ap STATIC

0 commit comments

Comments
 (0)