Skip to content

Commit

Permalink
Build curlpp in travis, and use make install for sdl_gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
emmachase committed Nov 17, 2018
1 parent 0471354 commit bf3dc0d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ addons:
- libsdl2-dev
- libluajit-5.1-dev
- libcurl4-openssl-dev
- libcurlpp-dev
# - libcurlpp-dev
- git

install: true
Expand All @@ -29,12 +29,18 @@ script:
- export CXX=/usr/bin/g++-8
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
# Get and build curlpp
- git clone https://github.com/jpbarrette/curlpp.git
- cd curlpp
- cmake .
- sudo make install
- cd ..
# Get and build SDL_gpu
- git clone https://github.com/grimfang4/sdl-gpu.git sdlgpu
- cd sdlgpu
- cmake .
- make
- sudo make install
- cd ..
# Build Riko4
- cmake -DSDL2_gpu_PATH="$PWD/sdlgpu/lib" .
- cmake .
- make

0 comments on commit bf3dc0d

Please sign in to comment.