mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 03:10:01 +08:00
32 lines
349 B
YAML
32 lines
349 B
YAML
sudo: false
|
|
|
|
language:
|
|
- cpp
|
|
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
- cmake --build .
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
jobs:
|
|
include:
|
|
# Ubuntu
|
|
- os: linux
|
|
dist: bionic
|
|
compiler: gcc
|
|
|
|
# Ubuntu
|
|
- os: linux
|
|
dist: bionic
|
|
compiler: clang
|
|
|
|
# OS X
|
|
- os: osx
|
|
|
|
# Windows
|
|
- os: windows
|