summaryrefslogtreecommitdiff
path: root/plugins/idb_import
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-02-17 20:30:51 -0500
committerMason Reed <mason@vector35.com>2025-02-17 20:30:51 -0500
commitdf8f369847ed4d4bd94a4c358867a4c01287f0af (patch)
treeec38771a176a9acd7fdcdfb3102bdb47bfa965dc /plugins/idb_import
parent0318574915649969318818128164346398386141 (diff)
Fix some misc Rust CMakeLists.txt issues
GLOB_RECURSE has been cut down a little bit to make configuring times reasonable
Diffstat (limited to 'plugins/idb_import')
-rw-r--r--plugins/idb_import/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/idb_import/CMakeLists.txt b/plugins/idb_import/CMakeLists.txt
index 6a6104d9..4cd52784 100644
--- a/plugins/idb_import/CMakeLists.txt
+++ b/plugins/idb_import/CMakeLists.txt
@@ -6,13 +6,13 @@ file(GLOB_RECURSE PLUGIN_SOURCES CONFIGURE_DEPENDS
${PROJECT_SOURCE_DIR}/Cargo.toml
${PROJECT_SOURCE_DIR}/src/*.rs)
-file(GLOB_RECURSE API_SOURCES CONFIGURE_DEPENDS
+file(GLOB API_SOURCES CONFIGURE_DEPENDS
${PROJECT_SOURCE_DIR}/../../binaryninjacore.h
${PROJECT_SOURCE_DIR}/../../rust/binaryninjacore-sys/build.rs
${PROJECT_SOURCE_DIR}/../../rust/binaryninjacore-sys/Cargo.toml
${PROJECT_SOURCE_DIR}/../../rust/binaryninjacore-sys/src/*
${PROJECT_SOURCE_DIR}/../../rust/Cargo.toml
- ${PROJECT_SOURCE_DIR}/../../rust/src/*.rs)
+ ${PROJECT_SOURCE_DIR}/../../rust/src/*/*.rs)
if(CMAKE_BUILD_TYPE MATCHES Debug)
set(TARGET_DIR ${PROJECT_BINARY_DIR}/target/debug)