-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.lgtm.yml
24 lines (23 loc) · 839 Bytes
/
.lgtm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
extraction:
cpp:
prepare:
packages:
- libssl-dev
configure:
command:
- "wget -q -O ptlib.zip https://github.com/willamowius/ptlib/archive/master.zip"
- "unzip ptlib.zip"
- "cd ptlib-master"
- "export PTLIBDIR=$(pwd)"
- "./configure --enable-ipv6 --disable-odbc --disable-sdl --disable-lua --disable-expat"
- "make optnoshared"
- "cd .."
- "wget -q -O h323plus.zip https://github.com/willamowius/h323plus/archive/master.zip"
- "unzip h323plus.zip"
- "cd h323plus-master"
- "export OPENH323DIR=$(pwd)"
- "./configure --enable-h235 --enable-h46017 --enable-h46026 --enable-h46019m"
- "make optnoshared"
- "cd .."
index:
build_command: "PTLIBDIR=$(pwd)/ptlib-master OPENH323DIR=$(pwd)/h323plus-master make optnoshared"