Skip to content

Commit

Permalink
cmake: libclc: add missing DEPENDS (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjodinchr authored Jun 24, 2024
1 parent 6265fca commit 0683cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ add_custom_command(
--header-var=${CLSPV_LIBRARY_DATA_VAR_NAME}
--header-size=${CLSPV_LIBRARY_SIZE_VAR_NAME}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
DEPENDS ${BAKE_FILE_PYTHON_FILE} ${CLSPV_LIBRARY_INPUT_DEP}
DEPENDS ${BAKE_FILE_PYTHON_FILE} ${CLSPV_LIBRARY_INPUT_DEP} ${CLSPV_LIBRARY_INPUT_FILE}
)

add_custom_command(
Expand All @@ -146,5 +146,5 @@ add_custom_command(
--header-var=${CLSPV64_LIBRARY_DATA_VAR_NAME}
--header-size=${CLSPV64_LIBRARY_SIZE_VAR_NAME}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
DEPENDS ${BAKE_FILE_PYTHON_FILE} ${CLSPV64_LIBRARY_INPUT_DEP}
DEPENDS ${BAKE_FILE_PYTHON_FILE} ${CLSPV64_LIBRARY_INPUT_DEP} ${CLSPV64_LIBRARY_INPUT_FILE}
)

0 comments on commit 0683cf6

Please sign in to comment.