From ae9ee3d9d8370bc41b15c12fc136c4c5f057045d Mon Sep 17 00:00:00 2001 From: Yang Liu Date: Mon, 26 May 2025 19:16:12 +0800 Subject: [CMAKE] Fixed dependency issues introduced recently (#2673) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index dc5b6d1b..442faad8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1154,6 +1154,8 @@ endif() add_custom_target(generate_git_head_target DEPENDS "${BOX64_ROOT}/src/git_head.h" ) +add_custom_target(functions_list DEPENDS "${BOX64_ROOT}/src/wrapped/generated/functions_list.txt" "${BOX64_ROOT}/src/wrapped32/generated/functions_list.txt") +add_dependencies(generate_git_head_target functions_list) add_library(interpreter OBJECT ${INTERPRETER}) -- cgit 1.4.1