Files
cimgui/.travis.yml

24 lines
294 B
YAML
Raw Normal View History

2015-04-09 16:40:11 +02:00
language: cpp
2020-08-12 22:04:55 +02:00
dist: focal
2015-04-09 16:40:11 +02:00
os:
- linux
- osx
2019-08-01 07:59:37 -05:00
- windows
2015-04-09 16:40:11 +02:00
compiler:
- gcc
- clang
2018-09-12 12:17:58 +02:00
script:
- mkdir bld
- cd bld
- cmake -D CIMGUI_TEST=1 ..
2020-08-09 19:19:57 +02:00
- cmake --build .
2019-08-01 07:59:37 -05:00
- |
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
./Debug/cimgui_test.exe
else
./cimgui_test
fi