Archived
1

add vendor files to an ignored path for Linguist stats

This commit is contained in:
Evan Pratten 2021-05-29 10:41:36 -04:00
parent eadf2d7fc2
commit 8c171957fb
7 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
fn main() {
// Compile the LeapMotion wrapper (and Leap itself)
cc::Build::new().file("cpp/wrapper.cc").flag("-Wno-deprecated").flag("-Wno-deprecated-copy").flag("-L lib").flag("-lLeap").flag("-lstdc++").compile("foo");
cc::Build::new().file("cpp/wrapper.cc").flag("-Wno-deprecated").flag("-Wno-deprecated-copy").flag("-L dist").flag("-lLeap").flag("-lstdc++").compile("foo");
// pkg_config::Config::new().probe("Leap").unwrap();
// Set up the linker to include Leap
println!("cargo:rustc-link-search=native=libodm/lib");
println!("cargo:rustc-link-search=native=libodm/dist");
println!("cargo:rustc-link-lib=Leap");
// Set up the linker to include stdc++

View File

@ -1,5 +1,5 @@
#include <iostream>
#include "../lib/Leap.h"
#include "../dist/Leap.h"
using namespace Leap;

2
odm.sh
View File

@ -7,4 +7,4 @@ echo "Enabling core dumps"
ulimit -c unlimited
echo "Starting cargo with new flags"
LD_LIBRARY_PATH="$(pwd)/libodm/lib:$LD_LIBRARY_PATH" cargo run $@
LD_LIBRARY_PATH="$(pwd)/libodm/dist:$LD_LIBRARY_PATH" cargo run $@

View File

@ -2,4 +2,4 @@
set -e
LD_LIBRARY_PATH="$(pwd)/libodm/lib:$LD_LIBRARY_PATH" gdb ./target/debug/odm
LD_LIBRARY_PATH="$(pwd)/libodm/dist:$LD_LIBRARY_PATH" gdb ./target/debug/odm