Skip to content

Commit

Permalink
RDKDEV-346: RDKServices startup-order support
Browse files Browse the repository at this point in the history
Reason for change: Provision to add startup-order.
Bringing from rdkcentral#3185
22Q4_sprint to main. Support for plugins from build recipe. Require: rdkcentral/Thunder#1071
Test Procedure: Please see ticket for details.
Risks: Medium
Source: Comcast
License: Inherited
Upstream-Status: Pending

Signed-off-by: Arun Madhavan [email protected]
  • Loading branch information
arun-madhavan-013 committed Oct 28, 2022
1 parent ea9c26c commit a84e4e0
Show file tree
Hide file tree
Showing 115 changed files with 343 additions and 2 deletions.
4 changes: 4 additions & 0 deletions AVInput/AVInput.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign org.rdk.AVInput)

if(PLUGIN_AVINPUT_STARTUPORDER)
set (startuporder ${PLUGIN_AVINPUT_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions AVInput/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})
find_package(${NAMESPACE}Plugins REQUIRED)
find_package(${NAMESPACE}Protocols REQUIRED)

set(PLUGIN_AVINPUT_STARTUPORDER "" CACHE STRING "To configure startup order of AVInput plugin")

add_library(${MODULE_NAME} SHARED
AVInput.cpp
Module.cpp
Expand Down
4 changes: 4 additions & 0 deletions ActivityMonitor/ActivityMonitor.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.ActivityMonitor")

if(PLUGIN_ACTIVITYMONITOR_STARTUPORDER)
set (startuporder ${PLUGIN_ACTIVITYMONITOR_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions ActivityMonitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME ActivityMonitor)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_ACTIVITYMONITOR_STARTUPORDER "" CACHE STRING "To configure startup order of ActivityMonitor plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions Bluetooth/Bluetooth.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.Bluetooth")

if(PLUGIN_BLUETOOTH_STARTUPORDER)
set (startuporder ${PLUGIN_BLUETOOTH_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions Bluetooth/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME Bluetooth)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_BLUETOOTH_STARTUPORDER "" CACHE STRING "To configure startup order of Bluetooth plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
2 changes: 2 additions & 0 deletions CompositeInput/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME CompositeInput)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_COMPOSITEINPUT_STARTUPORDER "" CACHE STRING "To configure startup order of CompositeInput plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions CompositeInput/CompositeInput.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.CompositeInput")

if(PLUGIN_COMPOSITEINPUT_STARTUPORDER)
set (startuporder ${PLUGIN_COMPOSITEINPUT_STARTUPORDER})
endif()
1 change: 1 addition & 0 deletions ContinueWatching/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ set(PLUGIN_NAME ContinueWatching)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_CONTINUEWATCHING_AUTOSTART true CACHE STRING "Automatically start ContinueWatching plugin")
set(PLUGIN_CONTINUEWATCHING_STARTUPORDER "" CACHE STRING "To configure startup order of ContinueWatching plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

Expand Down
4 changes: 4 additions & 0 deletions ContinueWatching/ContinueWatching.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign org.rdk.ContinueWatching)

if(PLUGIN_CONTINUEWATCHING_STARTUPORDER)
set (startuporder ${PLUGIN_CONTINUEWATCHING_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions ControlService/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

find_package(${NAMESPACE}Plugins REQUIRED)

set(PLUGIN_CONTROLSERVICE_STARTUPORDER "" CACHE STRING "To configure startup order of ControlService plugin")

add_subdirectory(test)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions ControlService/ControlService.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.ControlService")

if(PLUGIN_CONTROLSERVICE_STARTUPORDER)
set (startuporder ${PLUGIN_CONTROLSERVICE_STARTUPORDER})
endif()
1 change: 1 addition & 0 deletions DTV/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_DTV_AUTOSTART "true" CACHE STRING "Automatically start DTV plugin")
set(PLUGIN_DTV_MODE "Local" CACHE STRING "Controls if the plugin should run in its own process, in process or remote")
set(PLUGIN_DTV_STARTUPORDER "" CACHE STRING "To configure startup order of DTV plugin")

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

Expand Down
4 changes: 4 additions & 0 deletions DTV/DTV.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
set(autostart ${PLUGIN_DTV_AUTOSTART})
set(preconditions Platform)

if(PLUGIN_DTV_STARTUPORDER)
set (startuporder ${PLUGIN_DTV_STARTUPORDER})
endif()

map()
key(root)
map()
Expand Down
2 changes: 2 additions & 0 deletions DataCapture/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME DataCapture)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_DATACAPTURE_STARTUPORDER "" CACHE STRING "To configure startup order of DataCapture plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
6 changes: 5 additions & 1 deletion DataCapture/DataCapture.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign org.rdk.dataCapture)
set (callsign org.rdk.dataCapture)

if(PLUGIN_DATACAPTURE_STARTUPORDER)
set (startuporder ${PLUGIN_DATACAPTURE_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions DeviceDiagnostics/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME DeviceDiagnostics)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_DEVICEDIAGNOSTICS_STARTUPORDER "" CACHE STRING "To configure startup order of DeviceDiagnostics plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions DeviceDiagnostics/DeviceDiagnostics.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.DeviceDiagnostics")

if(PLUGIN_DEVICEDIAGNOSTICS_STARTUPORDER)
set (startuporder ${PLUGIN_DEVICEDIAGNOSTICS_STARTUPORDER})
endif()
1 change: 1 addition & 0 deletions DeviceIdentification/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
message("Setup ${MODULE_NAME} v${PROJECT_VERSION}")

set(PLUGIN_DEVICEIDENTIFICATION_AUTOSTART "true" CACHE STRING "Automatically start DeviceIdentification plugin")
set(PLUGIN_DEVICEIDENTIFICATION_STARTUPORDER "" CACHE STRING "Start-up order for DeviceIdentification plugin")
set(PLUGIN_DEVICEIDENTIFICATION_MODE "Off" CACHE STRING "Controls if the plugin should run in its own process, in process or remote")
set(PLUGIN_DEVICEIDENTIFICATION_INTERFACE_NAME "eth0" CACHE STRING "Ethernet Card name which has to be associated for the Raw Device Id creation")
option(PLUGIN_DEVICEIDENTIFICATION_USE_MFR "Get device identification details using MFR library" OFF)
Expand Down
5 changes: 5 additions & 0 deletions DeviceIdentification/DeviceIdentification.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
set(autostart ${PLUGIN_DEVICEIDENTIFICATION_AUTOSTART})
set(preconditions Platform)


if(PLUGIN_DEVICEIDENTIFICATION_STARTUPORDER)
set(startuporder ${PLUGIN_DEVICEIDENTIFICATION_STARTUPORDER})
endif()

map()
if(GENERIC_DEVICEIDENTIFIATION)
if(PLUGIN_DEVICEIDENTIFICATION_INTERFACE_NAME)
Expand Down
1 change: 1 addition & 0 deletions DeviceInfo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ set(PLUGIN_NAME DeviceInfo)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_DEVICEINFO_MODE "Off" CACHE STRING "Controls if the plugin should run in its own process, in process or remote")
set(PLUGIN_DEVICEINFO_STARTUPORDER "" CACHE STRING "Start-up order for DeviceInfo plugin")

find_package(${NAMESPACE}Plugins REQUIRED)
find_package(${NAMESPACE}Definitions REQUIRED)
Expand Down
4 changes: 4 additions & 0 deletions DeviceInfo/DeviceInfo.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ set(PLUGIN_DEVICEINFO_AUTOSTART true CACHE BOOL "Automatically start DeviceInfo

set (autostart ${PLUGIN_DEVICEINFO_AUTOSTART})

if(PLUGIN_DEVICEINFO_STARTUPORDER)
set (startuporder ${PLUGIN_DEVICEINFO_STARTUPORDER})
endif()

map()
key(root)
map()
Expand Down
1 change: 1 addition & 0 deletions DisplayInfo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ set(PLUGIN_NAME DisplayInfo)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_DISPLAYINFO_AUTOSTART "true" CACHE BOOL "Automatically start DisplayInfo plugin")
set(PLUGIN_DISPLAYINFO_STARTUPORDER "" CACHE STRING "Automatically start DisplayInfo plugin")
set(PLUGIN_DISPLAYINFO_MODE "Off" CACHE STRING "Set DisplayInfo plugin mode")

find_package(${NAMESPACE}Plugins REQUIRED)
Expand Down
4 changes: 4 additions & 0 deletions DisplayInfo/DisplayInfo.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
set(autostart ${PLUGIN_DISPLAYINFO_AUTOSTART})
set(preconditions Platform)

if(PLUGIN_DISPLAYINFO_STARTUPORDER)
set (startuporder ${PLUGIN_DISPLAYINFO_STARTUPORDER})
endif()

map()
key(root)
map()
Expand Down
2 changes: 2 additions & 0 deletions DisplaySettings/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME DisplaySettings)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_DISPLAYSETTINGS_STARTUPORDER "" CACHE STRING "To configure startup order of DisplaySettings plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions DisplaySettings/DisplaySettings.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.DisplaySettings")

if(PLUGIN_DISPLAYSETTINGS_STARTUPORDER)
set (startuporder ${PLUGIN_DISPLAYSETTINGS_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions FireboltMediaPlayer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME FireboltMediaPlayer)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_FIREBOLTMEDIAPLAYER_STARTUPORDER "" CACHE STRING "To configure startup order of FireboltMediaPlayer plugin")

find_package(${NAMESPACE}Definitions REQUIRED)
find_package(${NAMESPACE}Plugins REQUIRED)
find_package(CompileSettingsDebug CONFIG REQUIRED)
Expand Down
4 changes: 4 additions & 0 deletions FireboltMediaPlayer/FireboltMediaPlayer.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.FireboltMediaPlayer")

if(PLUGIN_FIREBOLTMEDIAPLAYER_STARTUPORDER)
set (startuporder ${PLUGIN_FIREBOLTMEDIAPLAYER_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions FrameRate/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME FrameRate)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_FRAMERATE_STARTUPORDER "" CACHE STRING "To configure startup order of FrameRate plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
3 changes: 3 additions & 0 deletions FrameRate/FrameRate.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.FrameRate")

if(PLUGIN_FRAMERATE_STARTUPORDER)
set (startuporder ${PLUGIN_FRAMERATE_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions FrontPanel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME FrontPanel)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_FRONTPANEL_STARTUPORDER "" CACHE STRING "To configure startup order of FrontPanel plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions FrontPanel/FrontPanel.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.FrontPanel")

if(PLUGIN_FRONTPANEL_STARTUPORDER)
set (startuporder ${PLUGIN_FRONTPANEL_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions HdcpProfile/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME HdcpProfile)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_HDCPPROFILE_STARTUPORDER "" CACHE STRING "To configure startup order of HdcpProfile plugin")

find_package(${NAMESPACE}Plugins REQUIRED)
find_package(${NAMESPACE}Protocols REQUIRED)

Expand Down
4 changes: 4 additions & 0 deletions HdcpProfile/HdcpProfile.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.HdcpProfile")

if(PLUGIN_HDCPPROFILE_STARTUPORDER)
set (startuporder ${PLUGIN_HDCPPROFILE_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions HdmiCec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME HdmiCec)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_HDMICEC_STARTUPORDER "" CACHE STRING "To configure startup order of HdmiCec plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions HdmiCec/HdmiCec.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.HdmiCec")

if(PLUGIN_HDMICEC_STARTUPORDER)
set (startuporder ${PLUGIN_HDMICEC_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions HdmiCecSink/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
set(PLUGIN_NAME HdmiCecSink)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_HDMICECSINK_STARTUPORDER "" CACHE STRING "To configure startup order of HdmiCecSink plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions HdmiCecSink/HdmiCecSink.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.HdmiCecSink")

if(PLUGIN_HDMICECSINK_STARTUPORDER)
set (startuporder ${PLUGIN_HDMICECSINK_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions HdmiCec_2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
set(PLUGIN_NAME HdmiCec_2)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_HDMICEC2_STARTUPORDER "" CACHE STRING "To configure startup order of HdmiCec_2 plugin")

find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
4 changes: 4 additions & 0 deletions HdmiCec_2/HdmiCec_2.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.HdmiCec_2")

if(PLUGIN_HDMICEC2_STARTUPORDER)
set (startuporder ${PLUGIN_HDMICEC2_STARTUPORDER})
endif()
2 changes: 2 additions & 0 deletions HdmiInput/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
set(PLUGIN_NAME HdmiInput)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_HDMIINPUT_STARTUPORDER "" CACHE STRING "To configure startup order of HdmiInput plugin")

find_package(${NAMESPACE}Plugins REQUIRED)
find_package(${NAMESPACE}Protocols REQUIRED)

Expand Down
4 changes: 4 additions & 0 deletions HdmiInput/HdmiInput.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.HdmiInput")

if(PLUGIN_HDMIINPUT_STARTUPORDER)
set (startuporder ${PLUGIN_HDMIINPUT_STARTUPORDER})
endif()
1 change: 1 addition & 0 deletions LinearPlaybackControl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ set(PLUGIN_NAME LinearPlaybackControl)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_LINEAR_PLAYBACK_CONTROL_AUTOSTART true CACHE STRING true)
set(PLUGIN_LINEARPLAYBACKCTL_STARTUPORDER "" CACHE STRING "To configure startup order of LinearPlaybackControl plugin")

find_package(${NAMESPACE}Plugins REQUIRED)
find_package(${NAMESPACE}Definitions REQUIRED)
Expand Down
4 changes: 4 additions & 0 deletions LinearPlaybackControl/LinearPlaybackControl.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
set (autostart ${PLUGIN_LINEAR_PLAYBACK_CONTROL_AUTOSTART})
set (preconditions Platform)

if(PLUGIN_LINEARPLAYBACKCTL_STARTUPORDER)
set (startuporder ${PLUGIN_LINEARPLAYBACKCTL_STARTUPORDER})
endif()

map()
key(root)
map()
Expand Down
1 change: 1 addition & 0 deletions LocationSync/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ set(MODULE_NAME ${NAMESPACE}${PROJECT_NAME})

set(PLUGIN_LOCATIONSYNC_AUTOSTART "true" CACHE STRING "Automatically start LocationSync plugin")
set(PLUGIN_LOCATIONSYNC_URI "location.webplatformforembedded.org" CACHE STRING "URI to request the location information")
set(PLUGIN_LOCATIONSYNC_STARTUPORDER "" CACHE STRING "To configure startup order of LocationSync plugin")

find_package(${NAMESPACE}Plugins REQUIRED)
find_package(CompileSettingsDebug CONFIG REQUIRED)
Expand Down
Loading

0 comments on commit a84e4e0

Please sign in to comment.