mirror of
https://github.com/socketio/socket.io-client-cpp.git
synced 2026-06-13 05:41:51 +00:00
- add the standalone ASIO as a replacement for Boost ASIO - add Catch++ as a replacement for Boost Test framework - remove dependency on Boost DateTime and Boost Lexical Cast
18 lines
512 B
YAML
18 lines
512 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
|
|
before_install:
|
|
- sudo apt-get install clang git libssl-dev
|
|
- sudo add-apt-repository -y ppa:kubuntu-ppa/backports
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test -y
|
|
- sudo apt-get update -yqq
|
|
- sudo apt-get install -y cmake g++-4.8
|
|
- sed -i -e 's/cmake_minimum_required(VERSION 3.1.0/cmake_minimum_required(VERSION 2.8.12/' ./CMakeLists.txt
|
|
script:
|
|
- cmake -D CMAKE_CXX_FLAGS=-std=c++11 -D BUILD_UNIT_TESTS=ON .
|
|
- make
|
|
- make test
|
|
- make install
|