-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32d224a
commit 28e9fbe
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
language: cpp | ||
sudo: required | ||
dist: bionic | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
compiler: | ||
- gcc | ||
- clang | ||
|
||
before_install: | ||
- if [ $TRAVIS_OS_NAME == linux ]; then | ||
sudo apt-get update -qq; | ||
sudo apt-get install -y --no-install-recommends libxrandr-dev libxi-dev libxxf86vm-dev libsdl2-dev; | ||
fi | ||
|
||
script: | ||
- cmake -B_build -H. || true | ||
- cmake --build _build --target gl3w_gen | ||
- cmake -B_build -H. # Second time for gl3w | ||
- cmake --build _build --target imgui-flame-graph-example | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters