Skip to content

Commit

Permalink
Disable test plugin build
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-wh committed Oct 10, 2023
1 parent 2c8ca93 commit 1564f02
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions wooting-analog-sdk/build.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const TEST_PLUGIN_DIR: &str = "test_c_plugin";

fn main() {
println!("Building Test C Plugin");
println!("{:?}", std::env::var("OUT_DIR"));
// println!("Building Test C Plugin");
// println!("{:?}", std::env::var("OUT_DIR"));

cmake::Config::new(TEST_PLUGIN_DIR)
.no_build_target(true)
.out_dir(format!("./{}", TEST_PLUGIN_DIR))
.always_configure(false)
.profile("Debug")
.build();
// cmake::Config::new(TEST_PLUGIN_DIR)
// .no_build_target(true)
// .out_dir(format!("./{}", TEST_PLUGIN_DIR))
// .always_configure(false)
// .profile("Debug")
// .build();
}

0 comments on commit 1564f02

Please sign in to comment.