Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support new versions of Thunder. #14

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 0 additions & 116 deletions .github/Patches/00010-R4.4-Add-support-for-project-dir.patch

This file was deleted.

42 changes: 0 additions & 42 deletions .github/Patches/1004-Add-support-for-project-dir.patch

This file was deleted.

10 changes: 8 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# If not stated otherwise in this file or this component's license file the

Check failure on line 1 in CMakeLists.txt

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'CMakeLists.txt' (Match: rdkcentral/ThunderInterfaces/4.2, 101 lines, url: https://github.com/rdkcentral/ThunderInterfaces/archive/R4.2.tar.gz, file: interfaces/CMakeLists.txt)
# following copyright and licenses apply:
#
# Copyright 2020 Metrological
Expand Down Expand Up @@ -38,8 +38,14 @@
set(GENERATOR_SEARCH_PATH ${CMAKE_SYSROOT}${CMAKE_INSTALL_PREFIX}/include/${NAMESPACE})
endif()

set(PROJECT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/apis")
ProxyStubGenerator(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/apis/*" OUTDIR "${CMAKE_CURRENT_BINARY_DIR}/generated" INCLUDE_PATH ${GENERATOR_SEARCH_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/apis" PROJECT_DIR ${PROJECT_DIR})
ProxyStubGenerator(
INPUT "${CMAKE_CURRENT_SOURCE_DIR}/apis/*"
OUTDIR "${CMAKE_CURRENT_BINARY_DIR}/generated"
INCLUDE_PATH "${GENERATOR_SEARCH_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/apis"
FRAMEWORK_NAMESPACE WPEFramework
NAMESPACE WPEFramework::Exchange
VERBOSE
)

file(GLOB_RECURSE INTERFACES_HEADERS ./apis/*/I*.h ./apis/*.h)
file(GLOB PROXY_STUB_SOURCES "${CMAKE_CURRENT_BINARY_DIR}/generated/ProxyStubs*.cpp")
Expand Down
8 changes: 0 additions & 8 deletions apis/OpenCDMi/IDRM.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* If not stated otherwise in this file or this component's LICENSE file the

Check failure on line 2 in apis/OpenCDMi/IDRM.h

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'apis/OpenCDMi/IDRM.h' (Match: rdkcentral/ThunderInterfaces/4.3.1, 667 lines, url: https://github.com/rdkcentral/ThunderInterfaces/archive/R4.3.1.tar.gz, file: interfaces/IDRM.h)
* following copyright and licenses apply:
*
* Copyright 2021 Metrological
Expand Down Expand Up @@ -154,14 +154,6 @@
size_t pos_;
};

namespace WPEFramework
{
namespace PluginHost
{
struct IShell;
}
}

namespace CDMi {

// EME error code to which CDMi errors are mapped. Please
Expand Down
Loading