mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-10 20:08:31 +01:00
33 lines
528 B
YAML
33 lines
528 B
YAML
language: cpp
|
|
dist: trusty
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
env:
|
|
- MSBUILD_PATH="c:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
|
|
|
|
script:
|
|
- mkdir bld
|
|
- cd bld
|
|
- cmake -D CIMGUI_TEST=1 ..
|
|
- |
|
|
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
|
|
export PATH=$MSBUILD_PATH:$PATH
|
|
MSBuild.exe cimgui.sln
|
|
else
|
|
make
|
|
fi
|
|
- |
|
|
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
|
|
./Debug/cimgui_test.exe
|
|
else
|
|
./cimgui_test
|
|
fi
|