-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"minimumXcdlRequired": "2.0.0", | ||
"license": "MIT", | ||
"copyright": "Copyright (c) 2022 Liviu Ionescu. All rights reserved.", | ||
"cdlPackage": { | ||
"name": "utils-lists", | ||
"description": "C++ lists, including intrusive lists.", | ||
"parent": "micro-os-plus", | ||
"compilerIncludeFolders": [ | ||
"include" | ||
], | ||
"compilerSourceFiles": [ | ||
"src/lists.cpp" | ||
], | ||
"compilerDefinitions": [], | ||
"compilerOptions": [], | ||
"dependencies": [], | ||
"generatedDefinition": "MICRO_OS_PLUS_HAS_UTILS_LISTS", | ||
"cdlOptions": { | ||
"trace": { | ||
"display": "Enable trace", | ||
"description": "Log trace diagnostics when TRACE is enabled", | ||
"valueType": "bool", | ||
"requires": "isEnabled('diag-trace')", | ||
"generatedDefinition": "MICRO_OS_PLUS_TRACE_UTILS_LISTS" | ||
}, | ||
"trace-constructors": { | ||
"display": "Enable trace constructors", | ||
"description": "Log trace diagnostics in constructors when TRACE is enabled", | ||
"valueType": "bool", | ||
"requires": "isEnabled('trace')", | ||
"generatedDefinition": "MICRO_OS_PLUS_TRACE_UTILS_LISTS_CONSTRUCTORS" | ||
} | ||
} | ||
} | ||
} |