about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-05-26 19:16:12 +0800
committerGitHub <noreply@github.com>2025-05-26 13:16:12 +0200
commitae9ee3d9d8370bc41b15c12fc136c4c5f057045d (patch)
tree56b6abb1fd90e7c55b7af22e54fb89f195477031
parent6947a5bb949169db2a009f99610e7df42a1c201b (diff)
downloadbox64-ae9ee3d9d8370bc41b15c12fc136c4c5f057045d.tar.gz
box64-ae9ee3d9d8370bc41b15c12fc136c4c5f057045d.zip
[CMAKE] Fixed dependency issues introduced recently (#2673)
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
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})