summaryrefslogtreecommitdiff
path: root/rust
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 /rust
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 'rust')
-rw-r--r--rust/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/CMakeLists.txt b/rust/CMakeLists.txt
index f1e3ddc5..6870b8fc 100644
--- a/rust/CMakeLists.txt
+++ b/rust/CMakeLists.txt
@@ -10,7 +10,7 @@ file(GLOB RUST_API_SOURCES CONFIGURE_DEPENDS
binaryninjacore-sys/Cargo.toml
binaryninjacore-sys/src/*
Cargo.toml
- src/*.rs)
+ src/*/*.rs)
if(CMAKE_BUILD_TYPE MATCHES Debug)
set(CARGO_CHECK_OPTS --workspace)