-
Notifications
You must be signed in to change notification settings - Fork 3
RDKEMW-11485: Fix the entservices-casting to support R5.3 #165
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
base: develop
Are you sure you want to change the base?
Changes from 2 commits
cdfbe5a
6d936bc
c66d32a
d85bd1f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| /** | ||
|
Check failure on line 1 in Miracast/MiracastPlayer/Module.h
|
||
| * If not stated otherwise in this file or this component's LICENSE | ||
| * file the following copyright and licenses apply: | ||
| * | ||
|
|
@@ -22,8 +22,8 @@ | |
| #define MODULE_NAME MiracastPlayer | ||
| #endif | ||
|
|
||
| #include <core/core.h> | ||
| #include <plugins/plugins.h> | ||
| #include <tracing/tracing.h> | ||
|
|
||
| #undef EXTERNAL | ||
| #define EXTERNAL | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| /** | ||
|
Check failure on line 1 in Miracast/MiracastService/Module.h
|
||
| * If not stated otherwise in this file or this component's LICENSE | ||
| * file the following copyright and licenses apply: | ||
| * | ||
|
|
@@ -22,8 +22,8 @@ | |
| #define MODULE_NAME MiracastService | ||
| #endif | ||
|
|
||
| #include <core/core.h> | ||
| #include <plugins/plugins.h> | ||
| #include <tracing/tracing.h> | ||
|
|
||
| #undef EXTERNAL | ||
| #define EXTERNAL | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,21 +26,13 @@ set(PLUGIN_XCAST_MODE "Local" CACHE STRING "Controls if the plugin should run in | |
| find_package(${NAMESPACE}Plugins REQUIRED) | ||
| find_package(RFC) | ||
| find_package(GLIB REQUIRED) | ||
| find_package(WPEFrameworkSecurityUtil) | ||
| find_package(${NAMESPACE}Definitions REQUIRED) | ||
| if(NOT WPEFRAMEWORK_SECURITYUTIL_FOUND) | ||
| add_definitions(-DSECURITY_TOKEN_ENABLED=0) | ||
| endif() | ||
|
|
||
| find_library(GLIB_LIBRARY NAMES glib-2.0) | ||
|
|
||
| find_library(XDIAL_LIBRARIES NAMES gdial-server) | ||
|
|
||
| if (USE_THUNDER_R4) | ||
| find_package(${NAMESPACE}COM REQUIRED) | ||
| else () | ||
| find_package(${NAMESPACE}Protocols REQUIRED) | ||
| endif (USE_THUNDER_R4) | ||
| find_package(${NAMESPACE}COM REQUIRED) | ||
tabbas651 marked this conversation as resolved.
Show resolved
Hide resolved
tabbas651 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
tabbas651 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| add_library(${MODULE_NAME} SHARED | ||
| XCast.cpp | ||
|
|
@@ -74,16 +66,12 @@ set_target_properties(${PLUGIN_IMPLEMENTATION} PROPERTIES | |
| CXX_STANDARD_REQUIRED YES) | ||
|
|
||
|
|
||
| if (USE_THUNDER_R4) | ||
| target_link_libraries(${PLUGIN_IMPLEMENTATION} PRIVATE ${NAMESPACE}COM::${NAMESPACE}COM) | ||
| else () | ||
| target_link_libraries(${PLUGIN_IMPLEMENTATION} PRIVATE ${NAMESPACE}Protocols::${NAMESPACE}Protocols) | ||
| endif (USE_THUNDER_R4) | ||
|
|
||
|
|
||
| find_package(IARMBus) | ||
| find_package(CEC) | ||
| find_library(NMPROXY_LIB NAMES ${NAMESPACE}NetworkManagerProxy PATHS ${CMAKE_SYSROOT}/usr/lib/wpeframework/proxystubs) | ||
| find_library(NMPROXY_LIB NAMES ${NAMESPACE}NetworkManagerProxy PATHS ${CMAKE_SYSROOT}/usr/lib/thunder/proxystubs) | ||
tabbas651 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| if (RDK_SERVICE_L2_TEST) | ||
| message ("L2 test Enabled") | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| /** | ||
|
Check failure on line 1 in XCast/Module.h
|
||
| * If not stated otherwise in this file or this component's LICENSE | ||
| * file the following copyright and licenses apply: | ||
| * | ||
|
|
@@ -22,8 +22,8 @@ | |
| #define MODULE_NAME Plugin_XCast | ||
| #endif | ||
|
|
||
| #include <core/core.h> | ||
| #include <plugins/plugins.h> | ||
| #include <tracing/tracing.h> | ||
|
|
||
| #undef EXTERNAL | ||
| #define EXTERNAL | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| /** | ||
|
Check failure on line 1 in helpers/UtilsController.h
|
||
| * If not stated otherwise in this file or this component's LICENSE | ||
| * file the following copyright and licenses apply: | ||
| * | ||
|
|
@@ -158,11 +158,7 @@ | |
| return thunderClient; | ||
| } | ||
|
|
||
| #ifndef USE_THUNDER_R4 | ||
| class Job : public Core::IDispatchType<void> | ||
| #else | ||
| class Job : public Core::IDispatch | ||
tabbas651 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| #endif /* USE_THUNDER_R4 */ | ||
| { | ||
| public: | ||
| Job(std::function<void()> work) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.