forked from rdkcentral/Thunder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Development/cmake winter cleanup (rdkcentral#1454)
* config: remove EXTERN_EVENTS * cmake: remove useless check Signed-off-by: Bram Oosterhuis <[email protected]> * CMake: remove setting the CMAKE_BUILD_TYPE * Tests: Add comrpctester --------- Signed-off-by: Bram Oosterhuis <[email protected]>
- Loading branch information
1 parent
a3ad237
commit 4a1243b
Showing
8 changed files
with
793 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# If not stated otherwise in this file or this component's license file the | ||
# following copyright and licenses apply: | ||
# | ||
# Copyright 2023 Metrological | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
add_executable(comrpctester main.cpp) | ||
|
||
target_link_libraries(comrpctester | ||
PRIVATE | ||
${NAMESPACE}Core::${NAMESPACE}Core | ||
${NAMESPACE}COM::${NAMESPACE}COM | ||
) | ||
|
||
set_target_properties(comrpctester PROPERTIES | ||
CXX_STANDARD 11 | ||
CXX_STANDARD_REQUIRED YES | ||
) | ||
|
||
install(TARGETS comrpctester DESTINATION bin) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"version": "1.0.", | ||
"port": 55555, | ||
"binding": "127.0.0.1", | ||
"ipv6": false, | ||
"idletime": 180, | ||
"softkillcheckwaittime": 10, | ||
"hardkillcheckwaittime": 4, | ||
"persistentpath": "/home/bram/Projects/metrological/Thunder/install/var/wpeframework/WPEFramework", | ||
"volatilepath": "/tmp", | ||
"datapath": "/home/bram/Projects/metrological/Thunder/install/usr/share/WPEFramework", | ||
"systempath": "/home/bram/Projects/metrological/Thunder/install/usr/lib/wpeframework/plugins", | ||
"proxystubpath": "/home/bram/Projects/metrological/Thunder/install/usr/lib/wpeframework/proxystubs", | ||
"postmortempath": "/opt/minidumps", | ||
"redirect": "/Service/Controller/UI", | ||
"communicator": "127.0.0.1:62000", | ||
"process": { | ||
"priority": 0, | ||
"policy": "OTHER", | ||
"oomadjust": 0, | ||
"stacksize": 0 | ||
}, | ||
"exitreasons": [ | ||
"Failure", | ||
"MemoryExceeded", | ||
"WatchdogExpired" | ||
], | ||
"plugins": [ | ||
{ | ||
"callsign": "Controller", | ||
"configuration": { | ||
"subsystems": [ | ||
"" | ||
] | ||
} | ||
} | ||
], | ||
"messaging": { | ||
"logging": { | ||
"abbreviated": true, | ||
"settings": [ | ||
{ | ||
"category": "Notification", | ||
"enabled": false | ||
} | ||
] | ||
}, | ||
"tracing": { | ||
"settings": [ | ||
{ | ||
"category": "Fatal", | ||
"enabled": true | ||
} | ||
] | ||
}, | ||
"reporting": { | ||
"abbreviated": true, | ||
"settings": [ | ||
{ | ||
"category": "TooLongWaitingForLock", | ||
"enabled": true | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.