This commit is contained in:
Bogdan 2016-02-02 22:39:15 +00:00
commit 0498eea825
4 changed files with 27 additions and 1 deletions

14
.travis.yml Normal file
View File

@ -0,0 +1,14 @@
language: cpp
os:
- linux
- osx
sudo: true
before_script:
- sh install-deps.sh
script:
- cmake .
- make

View File

@ -1,5 +1,6 @@
# GLFW # GLFW
[![Build Status](https://travis-ci.org/boddicheg/glfw.svg?branch=multi-platform)](https://travis-ci.org/boddicheg/glfw)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/boddicheg/glfw?branch=multi-platform&svg=true)](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
View File

@ -0,0 +1,5 @@
build_script:
- mkdir build
- cd build
- cmake ..
- cmake --build .

6
install-deps.sh Normal file
View 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