Skip to content

Commit

Permalink
Merge pull request #231 from ramonsmits/patch-2
Browse files Browse the repository at this point in the history
Fix for qmake build error introduced by #224
  • Loading branch information
EliasOenal authored Sep 30, 2024
2 parents 83aa3df + 1c73fce commit 95836ee
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ccpp.yml → .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ CI
name: C/C++ CI cmake

on: [push]

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/qmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: C/C++ CI qmake

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: jurplel/install-qt-action@v4
- name: qmake
run: mkdir build && cd build && qmake ../multimon-ng.pro
2 changes: 1 addition & 1 deletion multimon-ng.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CONFIG += console
CONFIG -= qt
CONFIG -= app_bundle
DEFINES += MAX_VERBOSE_LEVEL=3
QMAKE_CFLAGS += -std=gnu99
QMAKE_CFLAGS += -std=gnu11
QMAKE_CFLAGS += -g # For profiling

isEmpty(PREFIX) {
Expand Down

0 comments on commit 95836ee

Please sign in to comment.