add vendor files to an ignored path for Linguist stats
This commit is contained in:
parent
eadf2d7fc2
commit
8c171957fb
@ -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++
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <iostream>
|
||||
#include "../lib/Leap.h"
|
||||
#include "../dist/Leap.h"
|
||||
|
||||
using namespace Leap;
|
||||
|
||||
|
0
libodm/lib/Leap.h → libodm/dist/Leap.h
vendored
0
libodm/lib/Leap.h → libodm/dist/Leap.h
vendored
2
odm.sh
2
odm.sh
@ -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 $@
|
@ -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
|
Reference in New Issue
Block a user