Skip to content

Commit

Permalink
Add build of LibFFmpeg as submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianFeldmann committed Apr 28, 2024
1 parent 4fb5f0b commit 9c7f818
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
QMAKE_COMMAND: qmake6
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- run: git fetch --prune --unshallow
- name: Install Linux packages
run: |
Expand All @@ -41,6 +43,8 @@ jobs:
- os: macos-12
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- run: git fetch --prune --unshallow
- name: Install packages
run: |
Expand Down Expand Up @@ -78,6 +82,8 @@ jobs:
CPU_COUNT_COMMAND: sysctl -n hw.logicalcpu
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- run: git fetch --prune --unshallow
- name: Install Qt base
run: |
Expand Down Expand Up @@ -156,6 +162,8 @@ jobs:
QT_FILE: qtBase_6.5.2_win2019.zip
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- uses: ilammy/msvc-dev-cmd@v1
- run: git fetch --prune --unshallow
- name: Install Qt base
Expand Down
4 changes: 3 additions & 1 deletion YUView.pro
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
TEMPLATE = subdirs
SUBDIRS = YUViewLib YUViewApp
SUBDIRS = YUViewLib YUViewApp LibFFmpeg

YUViewApp.subdir = YUViewApp
YUViewLib.subdir = YUViewLib
LibFFmpeg.subdir = submodules/LibFFmpeg

YUViewLib.depends = LibFFmpeg
YUViewApp.depends = YUViewLib

UNITTESTS {
Expand Down

0 comments on commit 9c7f818

Please sign in to comment.