13 lines
190 B
YAML
13 lines
190 B
YAML
os:
|
|
- linux
|
|
- osx
|
|
language: cpp
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -DCMAKE_INSTALL_PREFIX:PATH=../install ..
|
|
- cmake --build . --target install
|