-
Notifications
You must be signed in to change notification settings - Fork 102
41 lines (34 loc) · 1.2 KB
/
Win_Mac_Linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: "Win_Mac_Linux"
# Test that a default build works with no specific option on all desktop platforms
on:
workflow_dispatch:
pull_request:
push:
jobs:
build:
name: Cpp
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
window_backend: [ Glfw, Sdl ]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: apt install xorg-dev libglfw3-dev libsdl2-dev libfreetype-dev (ubuntu only)
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: sudo apt-get update && sudo apt-get install -y xorg-dev libglfw3-dev libsdl2-dev libfreetype-dev
- name: Build and install
shell: bash
run: |
mkdir build
cd build
if [ "${{ matrix.window_backend }}" = "Sdl" ]; then
cmake .. -DHELLOIMGUI_USE_SDL_OPENGL3=ON -DHELLOIMGUI_DOWNLOAD_FREETYPE_IF_NEEDED=ON -DCMAKE_BUILD_TYPE=Release
fi
if [ "${{ matrix.window_backend }}" = "Glfw" ]; then
cmake .. -DHELLOIMGUI_DOWNLOAD_FREETYPE_IF_NEEDED=ON -DCMAKE_BUILD_TYPE=Release
fi
cmake --build . -j 3