cmake: kernel_all.c does not depend upon any generation
`c_arguments_deps` is meant to be the dependencies needed if directly using the CMAKE_C_FLAGS variable, but we are not using that here and so the dependency is redundant
This commit is contained in:
parent
c499f7004b
commit
c77e3b52a1
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ list(APPEND c_arguments_deps kernel_autoconf_Gen
|
|||
|
||||
add_custom_command(OUTPUT kernel_all.c
|
||||
COMMAND "${CPP_GEN_PATH}" ${c_sources} > kernel_all.c
|
||||
DEPENDS "${CPP_GEN_PATH}" ${c_sources} ${c_arguments_deps}
|
||||
DEPENDS "${CPP_GEN_PATH}" ${c_sources}
|
||||
COMMENT "Concatenating C files"
|
||||
VERBATIM
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue