Skip to content

Commit 3a096d7

Browse files
authored
Merge pull request #130 from sundermann/fix-backend-path
Fix backend output path
2 parents 1c4fb15 + 8423e1c commit 3a096d7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Build
22

33
on:
44
push:
5+
pull_request:
56

67
env:
78
TOOLCHAIN_URL: https://github.com/openlgtv/buildroot-nc4/releases/download/webos-b17b4cc/arm-webos-linux-gnueabi_sdk-buildroot.tar.gz
@@ -56,7 +57,6 @@ jobs:
5657
path: |
5758
${{github.workspace}}/build/hyperion-webos
5859
${{github.workspace}}/build/*.so
59-
${{github.workspace}}/build/unicapture/*.so
6060
6161
- uses: DoozyX/[email protected]
6262
with:
@@ -71,4 +71,3 @@ jobs:
7171
files: |
7272
${{github.workspace}}/build/hyperion-webos
7373
${{github.workspace}}/build/*.so
74-
${{github.workspace}}/build/unicapture/*.so

unicapture/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ target_include_directories(unicapture PUBLIC ${UNICAPTURE_INCLUDE_DIRS})
77
target_link_libraries(unicapture PUBLIC yuv)
88

99
# "Unified" v2 Backends
10+
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
11+
1012
add_library(gm_backend SHARED
1113
backends/libgm.c
1214
)

0 commit comments

Comments
 (0)