You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If a different set of dependencies is needed, then the build process will fail. This makes it impossible to utilize to_lab in a system without modifying the upstream repository. The TO table can be easily overridden in the build process (ie: copying to sample_defs/tables/to_lab_sub.c), but the include list is currently fixed.
Proposed change
The foreach line in CMakeLists.txt can be changed to use a CMake macro foreach(EXT_APP ${${TGTSYS_${SYSVAR}}_APPLIST})
NOTE: This issue also applies to sch_lab.
The text was updated successfully, but these errors were encountered:
CCB 2 January 2025: Can define own table, don't need to use #includes. The logic in the CMake is just to support default table, user can add any logic.
Describe the bug
If a different set of dependencies is needed, then the build process will fail. This makes it impossible to utilize to_lab in a system without modifying the upstream repository. The TO table can be easily overridden in the build process (ie: copying to sample_defs/tables/to_lab_sub.c), but the include list is currently fixed.
Proposed change
The foreach line in CMakeLists.txt can be changed to use a CMake macro
foreach(EXT_APP ${${TGTSYS_${SYSVAR}}_APPLIST})
NOTE: This issue also applies to sch_lab.
The text was updated successfully, but these errors were encountered: