libnfc/.travis.yml

22 lines
406 B
YAML
Raw Normal View History

2017-03-03 18:41:13 +01:00
language: c
compiler:
- clang
- gcc
env:
- BLD=cmake
- BLD=autoconf
2015-09-01 09:33:06 +02:00
addons:
apt:
packages:
- libusb-dev
- doxygen
- cmake
- libcutter-dev
script:
2017-03-03 18:41:13 +01:00
- if [ $BLD == autoconf ]; then autoreconf -vfi && ./configure --prefix=$HOME/.local/ && make -j2 && make install; fi
- if [ $BLD == cmake ]; then cmake -DCMAKE_INSTALL_PREFIX=~/.local . && make -j2 && make install; fi