My fork of cimgui to point to the macoy.me imgui mirror rather than github.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
294 B

language: cpp
dist: focal
os:
- linux
- osx
- windows
compiler:
- gcc
- clang
script:
- mkdir bld
- cd bld
- cmake -D CIMGUI_TEST=1 ..
- cmake --build .
- |
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
./Debug/cimgui_test.exe
else
./cimgui_test
fi