mirror of
https://github.com/glfw/glfw.git
synced 2025-10-04 21:56:36 +00:00
Merge 4e3ae3c8ff
into f22edf13dc
This commit is contained in:
commit
0498eea825
14
.travis.yml
Normal file
14
.travis.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
language: cpp
|
||||||
|
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
|
|
||||||
|
sudo: true
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- sh install-deps.sh
|
||||||
|
|
||||||
|
script:
|
||||||
|
- cmake .
|
||||||
|
- make
|
@ -1,5 +1,6 @@
|
|||||||
# GLFW
|
# GLFW
|
||||||
|
[](https://travis-ci.org/boddicheg/glfw)
|
||||||
|
[](https://ci.appveyor.com/project/boddicheg/glfw)
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
GLFW is a free, Open Source, multi-platform library for OpenGL and OpenGL ES
|
GLFW is a free, Open Source, multi-platform library for OpenGL and OpenGL ES
|
||||||
|
5
appveyor.yml
Normal file
5
appveyor.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
build_script:
|
||||||
|
- mkdir build
|
||||||
|
- cd build
|
||||||
|
- cmake ..
|
||||||
|
- cmake --build .
|
6
install-deps.sh
Normal file
6
install-deps.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
wget http://www.cmake.org/files/v2.8/cmake-2.8.12.tar.gz
|
||||||
|
tar xzf cmake-2.8.12.tar.gz
|
||||||
|
cd cmake-2.8.12
|
||||||
|
cmake .
|
||||||
|
make
|
||||||
|
sudo make install
|
Loading…
Reference in New Issue
Block a user