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
The add_cfe_tables function is declared as follows in arch_build.cmake: function(add_cfe_tables APP_NAME TBL_SRC_FILES)
The first parameter was intended to be the application name that the table is associated with, but historically any string was accepted since the string just served to make a unique target name.
To Reproduce
Sample_app always passes the string sampleAppTable here.
Expected behavior
Should pass sample_app as first argument.
Additional context
No major issue with the current build system, but will may become an issue if/when nasa/cFE#1538 is implemented, and may also become an issue if directory-scope include directories are removed.
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
Describe the bug
The
add_cfe_tables
function is declared as follows in arch_build.cmake:function(add_cfe_tables APP_NAME TBL_SRC_FILES)
The first parameter was intended to be the application name that the table is associated with, but historically any string was accepted since the string just served to make a unique target name.
To Reproduce
Sample_app always passes the string
sampleAppTable
here.Expected behavior
Should pass
sample_app
as first argument.Code snips
sample_app/CMakeLists.txt
Line 14 in 1c32ed4
System observed on:
Ubuntu
Additional context
No major issue with the current build system, but will may become an issue if/when nasa/cFE#1538 is implemented, and may also become an issue if directory-scope include directories are removed.
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: