Skip to content

Commit e7dbfb5

Browse files
committed
Merge branch 'master' into rewrite-ofxSvg
2 parents c8fab6b + aa344f6 commit e7dbfb5

File tree

243 files changed

+2379
-5025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+2379
-5025
lines changed

.github/workflows/of.yml

Lines changed: 1 addition & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
117117

118118
build-vs2022:
119-
runs-on: windows-2022
119+
runs-on: windows-2025
120120
strategy:
121121
matrix:
122122
platform: [x64, ARM64, ARM64EC]
@@ -161,61 +161,6 @@ jobs:
161161
msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
162162
msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=release /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
163163
164-
build-vs2019:
165-
runs-on: windows-2019
166-
strategy:
167-
matrix:
168-
platform: [x64]
169-
env:
170-
BITS: ${{ matrix.bits }}
171-
steps:
172-
- name: Clone repository
173-
uses: actions/checkout@v4
174-
175-
- uses: msys2/[email protected]
176-
with:
177-
update: true
178-
install: >-
179-
git
180-
unzip
181-
182-
- name: Setup MSBuild (VS2019 - 16.11)
183-
uses: microsoft/setup-msbuild@v2
184-
with:
185-
vs-version: "16.11"
186-
msbuild-architecture: x64
187-
188-
- name: Verify MSBuild Version
189-
run: msbuild -version
190-
191-
- name: Download libs
192-
run: ./scripts/vs/download_libs_2019_x64.sh -t $RELEASE
193-
194-
- name: Download projectGenerator
195-
shell: bash
196-
run: ./scripts/vs/download_projectGenerator.sh
197-
198-
- name: Debug projectGenerator Directory
199-
shell: bash
200-
run: |
201-
echo "Checking projectGenerator directory:"
202-
ls -la projectGenerator/
203-
204-
# - name: run projectGenerator on examples
205-
# shell: bash
206-
# run: ./scripts/ci/vs/pg_projects.sh
207-
208-
# - name: Build DEBUG and RELEASE emptyExample
209-
# working-directory: ${{env.GITHUB_WORKSPACE}}
210-
# run: |
211-
# msbuild examples/templates/emptyExample/emptyExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v142
212-
# msbuild examples/templates/emptyExample/emptyExample.vcxproj /p:configuration=release /p:platform=${{ matrix.platform }} /p:PlatformToolset=v142
213-
# - name: Build DEBUG and RELEASE allAddonsExample
214-
# working-directory: ${{env.GITHUB_WORKSPACE}}
215-
# run: |
216-
# msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v142
217-
# msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=release /p:platform=${{ matrix.platform }} /p:PlatformToolset=v142
218-
219164
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
220165

221166
rpi-build:

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,28 @@ Desktop.ini
140140
.csettings
141141
/libs/openFrameworksCompiled/project/android/paths.make
142142

143+
/libs/openFrameworksCompiled/project/android/**/build/
144+
/libs/openFrameworksCompiled/project/android/**/.cxx/
145+
/libs/openFrameworksCompiled/project/android/build*
146+
147+
examples/android/**/build.gradle
148+
examples/android/**/gradle.properties
149+
examples/android/**/proguard.cfg
150+
examples/android/**/proguard-rules.pro
151+
examples/android/**/template.config
152+
examples/android/**/AndroidManifest.xml
153+
examples/android/**/OFActivity.java
154+
155+
# Ignore compiled output or build dirs
156+
examples/android/**/build/
157+
examples/android/**/.cxx/
158+
159+
# Ignore launcher icons or PNGs
160+
examples/android/**/*.png
161+
162+
# Ignore CMake files if autogenerated
163+
examples/android/**/CMakeLists.txt
164+
143165
# Android Studio
144166
*.iml
145167

@@ -170,3 +192,5 @@ libs/openFrameworksCompiled/project/vs2019/openframeworksLib.vcxproj.user
170192
scripts/templates/vs/bin/emptyExample_debug.exe
171193
scripts/templates/vs2019/emptyExample.vcxproj.user
172194
libs/openFrameworksCompiled/project/android/build-*/
195+
196+

0 commit comments

Comments
 (0)