Skip to content

Add ImGuiWS::addResource() method (#25) #25

Add ImGuiWS::addResource() method (#25)

Add ImGuiWS::addResource() method (#25) #25

Workflow file for this run

name: CI
on: [push]
jobs:
ubuntu-18_04-gcc:
runs-on: ubuntu-18.04
strategy:
matrix:
build: [Debug, Release]
steps:
- name: Clone
uses: actions/checkout@v1
with:
submodules: recursive
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install cmake;
sudo apt-get install libssl-dev;
sudo apt-get install libsdl2-dev;
- name: Configure
run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DIMGUI_WS_SUPPORT_SDL2=ON
- name: Build
run: |
make
ubuntu-18_04-clang:
runs-on: ubuntu-18.04
strategy:
matrix:
build: [Release]
steps:
- name: Clone
uses: actions/checkout@v1
with:
submodules: recursive
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install cmake;
sudo apt-get install libssl-dev;
sudo apt-get install libsdl2-dev;
- name: Configure
run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DIMGUI_WS_SUPPORT_SDL2=ON -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
- name: Build
run: |
make
macOS-latest:
runs-on: macOS-latest
strategy:
matrix:
build: [Release]
steps:
- name: Clone
uses: actions/checkout@v1
with:
submodules: recursive
- name: Dependencies
run: |
brew update
brew install libuv openssl sdl2
- name: Configure
run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DIMGUI_WS_SUPPORT_SDL2=ON -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOPENSSL_SSL_LIBRARY=/usr/local/opt/[email protected]/lib/libssl.dylib -DOPENSSL_CRYPTO_LIBRARY=/usr/local/opt/[email protected]/lib/libcrypto.dylib
- name: Build
run: |
make