Skip to content

Commit 401064e

Browse files
authored
PG Fix ofUtils.h missing include
1 parent 22db54d commit 401064e

9 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- name: Install libunwind
2626
run: sudo apt-get install libunwind-dev
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- name: Build
2929
run:
3030
./scripts/linux/buildPG.sh;

.github/workflows/build-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
jobs:
16-
build-osx:
17-
runs-on: macos-13
16+
build-macos:
17+
runs-on: macos-latest
1818
strategy:
1919
matrix:
2020
cfg:
@@ -108,7 +108,7 @@ jobs:
108108
fi
109109
- name: Update Release x86_64
110110
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
111-
uses: IsaacShelton/update-existing-release@v1.3.3
111+
uses: IsaacShelton/update-existing-release@v1.3.4
112112
with:
113113
token: ${{ secrets.GITHUB_TOKEN }}
114114
tag: ${{ env.release }}

.github/workflows/build-vs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
files: ../openFrameworks/apps/projectGenerator/commandLine/bin/projectGenerator-vs.zip
9898
- name: Update Project Gen GUI Release
9999
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
100-
uses: IsaacShelton/update-existing-release@v1.3.3
100+
uses: IsaacShelton/update-existing-release@v1.3.4
101101
with:
102102
token: ${{ secrets.GITHUB_TOKEN }}
103103
tag: ${{ env.release }}

commandLine/src/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
#include "optionparser.h"
55
#include "defines.h"
6+
#include "ofUtils.h"
67
#include "Utils.h"
78
#include <string>
89
#include <set>

commandLine/src/projects/androidStudioProject.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "ofLog.h"
33
#include "ofFileUtils.h"
44
#include "Utils.h"
5+
#include "ofUtils.h"
56
#include <regex>
67

78
std::string AndroidStudioProject::LOG_NAME = "AndroidStudioProject";

commandLine/src/projects/baseProject.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "ofLog.h"
1212
#include "Utils.h"
1313
#include "ofConstants.h"
14+
#include "ofUtils.h"
1415
#include <list>
1516
#include <set>
1617
#include <unordered_set>

commandLine/src/projects/qtcreatorproject.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "ofLog.h"
33
#include "ofFileUtils.h"
44
#include "Utils.h"
5+
#include "ofUtils.h"
56
#include <regex>
67

78
std::string QtCreatorProject::LOG_NAME = "QtCreatorProject";

commandLine/src/projects/visualStudioProject.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "visualStudioProject.h"
22
#include "Utils.h"
3+
#include "ofUtils.h"
34

45
string visualStudioProject::LOG_NAME = "visualStudioProjectFile";
56

commandLine/src/projects/xcodeProject.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "xcodeProject.h"
22
#include "Utils.h"
3+
#include "ofUtils.h"
34
#include "json.hpp"
45
#include <iostream>
56

0 commit comments

Comments
 (0)