-
Notifications
You must be signed in to change notification settings - Fork 16
Mburton/sc log #28
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: main
Are you sure you want to change the base?
Mburton/sc log #28
Conversation
report.h contains only the macros for simplified use of the SC report infrastructure. logger.h now contains the declaration of a custom lSC logging backend. report.cpp still needs to be refactored.
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
Signed-off-by: Mark Burton <[email protected]>
As discussed in CPSWG at 2025/04/08:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also style check fails.
cmake_minimum_required(VERSION 3.14 FATAL_ERROR) | ||
project(audioexample VERSION 1.0 LANGUAGES CXX C) | ||
|
||
set(CMAKE_CXX_STANDARD 17 CACHE STRING "C++ standard to build all targets.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would not force global settings, rather set it for the target.
|
||
find_package(PkgConfig REQUIRED) | ||
pkg_check_modules(PORTAUDIO REQUIRED IMPORTED_TARGET GLOBAL portaudio-2.0) | ||
#include_directories(${PORTAUDIO_INCLUDE_DIRS}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove?
@@ -0,0 +1,129 @@ | |||
/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be part of CPS base instead of the example
No description provided.