Add feature

master
Melroy van den Berg 2022-02-08 22:43:00 +01:00
parent 4331631a27
commit ee389e9af3
No known key found for this signature in database
GPG Key ID: 71D11FF23454B9D7
1 changed files with 11 additions and 0 deletions

View File

@ -21,6 +21,17 @@ jobs:
gtkmm3 \
ninja
# Workaround for now, we create our own features.h file (macos image either is missing this file, or some include folder is missing during the build)
- name: Add `features.h`
run: |
cat >> src/features.h << EOF
#pragma once
/*** @file features.h*
* @brief Synonym for `<sys/cdefs.h>` for source compatibility with glibc.
* */
#include <sys/cdefs.h>
EOF
- name: Build
run: |
mkdir build && cd build