Skip to content

Commit 33a84ab

Browse files
committed
schedule: trim unnecessary paths from source files
Now that cmake rules are moved to same directory as source files, no need to specify the full path for source files. Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
1 parent fe2b5dc commit 33a84ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/schedule/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ else()
3939
endif()
4040

4141
zephyr_library_sources_ifdef(CONFIG_ZEPHYR_DP_SCHEDULER
42-
${SOF_SRC_PATH}/schedule/zephyr_dp_schedule.c
42+
zephyr_dp_schedule.c
4343
)
4444

4545
zephyr_library_sources_ifdef(CONFIG_ZEPHYR_TWB_SCHEDULER
46-
${SOF_SRC_PATH}/schedule/zephyr_twb_schedule.c
46+
zephyr_twb_schedule.c
4747
)
4848

4949
else() ### Not Zephyr ###

0 commit comments

Comments
 (0)