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

RDKB-48215: Spike - Replace rtmessage into rbusMessage across RBUS code. #192

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
File renamed without changes.
2 changes: 1 addition & 1 deletion rdk_env.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</rbus>

<xwrbus>
<dependencies>xwrdklogger, xwcjson, xwlibexchanger</dependencies>
<dependencies>xwrdklogger, xwcjson, xwmsgpack, xwlibexchanger</dependencies>
<paths>
<scripts>xw/opensource/src/rbus/</scripts>
<target>xw/opensource/</target>
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# limitations under the License.
##########################################################################
add_subdirectory(rtmessage)

include_directories(${PROJECT_SOURCE_DIR}/include)
IF (NOT BUILD_ONLY_RTMESSAGE)
add_subdirectory(core)

Expand Down
4 changes: 3 additions & 1 deletion src/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
# limitations under the License.
##########################################################################
include_directories(${PROJECT_SOURCE_DIR}/src/rtmessage)
include_directories(${CMAKE_INSTALL_PREFIX}/include/rbus)
include_directories(${PROJECT_SOURCE_DIR}/include)
add_library(
rbuscore
SHARED
Expand All @@ -36,4 +38,4 @@ install (TARGETS rbuscore
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})

install (FILES rbuscore.h rbuscore_message.h rbuscore_types.h DESTINATION "include/rbus")
install (FILES rbuscore.h rbuscore_types.h DESTINATION "include/rbus")
Loading