diff options
Diffstat (limited to '.lgtm.yml')
-rw-r--r-- | .lgtm.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.lgtm.yml b/.lgtm.yml new file mode 100644 index 0000000..f1f1830 --- /dev/null +++ b/.lgtm.yml @@ -0,0 +1,24 @@ +extraction: + cpp: + prepare: + packages: + - build-essential + - automake + - autoconf + - libtool + - pkg-config + - protobuf-c-compiler + - libprotobuf-c-dev + after_prepare: + - git clone https://github.com/DNS-OARC/tinyframe.git + - cd tinyframe + - ./autogen.sh + - ./configure --prefix="$PWD/../root" + - make + - make install + - cd .. + - export PKG_CONFIG_PATH="$PWD/root/lib/pkgconfig" + configure: + command: + - ./autogen.sh + - ./configure --disable-examples |