Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/cmake-worker.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: CMake Worker
name: Windows-&-Linux Building

on:
push:
branches: [ "version-core" ]
pull_request:
branches: [ "version-core" ]
branches:
- "**"

jobs:
release:
Expand All @@ -29,10 +28,18 @@ jobs:
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-noble.list http://packages.lunarg.com/vulkan/lunarg-vulkan-noble.list

sudo apt update
sudo apt install vulkan-sdk

sudo apt-get install gcc-mingw-w64 g++-mingw-w64 mingw-w64-tools mingw-w64-x86-64-dev
sudo apt-get install gcc-mingw-w64-x86-64

git clone https://github.com/MrsRina/freetype-mingw64-w64-support
cd ./freetype-mingw64-w64-support
cmake -S . -B ./cmake-build -G Ninja -D CMAKE_C_COMPILER=x86_64-w64-mingw32-gcc -D FORCE_WINDOWS=1 -D CMAKE_INSTALL_PREFIX=/usr/local/
cmake --build ./cmake-build
sudo cmake --install ./cmake-build
cd ..

sudo apt-get install gcc-mingw-w64-x86-64 g++-mingw-w64 mingw-w64-tools mingw-w64-x86-64-dev
sudo apt-get install libfreetype6-dev libsdl2-dev libglew-dev libopengl-dev libglx-dev libgl1-mesa-dev libglfw3-dev
sudo apt install vulkan-sdk

wget https://github.com/libsdl-org/SDL/releases/download/release-2.30.2/SDL2-devel-2.30.2-mingw.zip
unzip ./SDL2-devel-2.30.2-mingw.zip
Expand Down
1 change: 1 addition & 0 deletions include/ekg/io/timing.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#define EKG_IO_TIMING_HPP

#include <iostream>
#include <cstdint>

namespace ekg {
struct timing_t {
Expand Down
Loading