mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
eaabd3ff8d
* chore(Trace): add dev env settings * add(Trace): init add Poco::trace and libbacktrace files * feat(Exception): generate stack trace if enabled at compile time * chore(DNSSD): remove binaries from git * fix(Trace): build * chore(ci): exclude exception text tests for trace build; add debug test script params * chore(build): mac (dl) * chore(cmake): Changes to build Trace with CMake. * chore(cmake): Changes to build Trace on Windows * chore(cmake): Improvements to include trace sample. * chore(cmake): Fixes to properly build/link Trace on Linux * chore(cmake): add_definitions --> add_compile_definitions * chore(cmake): Build Trace as static and don't export it. * chore(make): Link Trace with built-in libbacktrace on Linux * chore(Trace): remove unnecessary sources for libbacktrace. * chore(github): enable trace on a few github checks * chore(cmake): Build Trace with clang++ on Linux. * chore(cmake): Properly set POCO_ENABLE_TRACE globally when needed. * fix(cmake): Trace: corrected include for clang on Linux --------- Co-authored-by: Matej Kenda <matejken@gmail.com>
79 lines
2.6 KiB
JSON
79 lines
2.6 KiB
JSON
{
|
|
"env": {
|
|
"POCO_BASE": "${workspaceFolder}",
|
|
"pocoIncludePath": [
|
|
"${POCO_BASE}/CppUnit/include",
|
|
"${POCO_BASE}/Foundation/include",
|
|
"${POCO_BASE}/Encodings/include",
|
|
"${POCO_BASE}/XML/include",
|
|
"${POCO_BASE}/JSON/include",
|
|
"${POCO_BASE}/Util/include",
|
|
"${POCO_BASE}/Net/include",
|
|
"${POCO_BASE}/Crypto/include",
|
|
"${POCO_BASE}/NetSSL_OpenSSL/include",
|
|
"${POCO_BASE}/Data/include",
|
|
"${POCO_BASE}/Data/SQLite/include",
|
|
"${POCO_BASE}/Data/ODBC/include",
|
|
"${POCO_BASE}/Data/MySQL/include",
|
|
"${POCO_BASE}/Data/PostgreSQL/include",
|
|
"${POCO_BASE}/ActiveRecord/include",
|
|
"${POCO_BASE}/Zip/include",
|
|
"${POCO_BASE}/CppParser/include",
|
|
"${POCO_BASE}/JWT/include",
|
|
"${POCO_BASE}/Redis/include",
|
|
"${POCO_BASE}/MongoDB/include",
|
|
"${POCO_BASE}/ApacheConnector/include",
|
|
"${POCO_BASE}/Data/src",
|
|
"${POCO_BASE}/Data/DataTest/include",
|
|
"${POCO_BASE}/Trace/include"
|
|
]
|
|
},
|
|
"configurations": [
|
|
{
|
|
"name": "Mac",
|
|
"intelliSenseMode": "clang-x64",
|
|
"includePath": [
|
|
"${pocoIncludePath}",
|
|
"/usr/local/opt/openssl@3/include"
|
|
],
|
|
"macFrameworkPath": [
|
|
"/System/Library/Frameworks"
|
|
],
|
|
"defines": [],
|
|
"forcedInclude": [],
|
|
"compilerPath": "/usr/bin/clang",
|
|
"cStandard": "c11",
|
|
"cppStandard": "c++17",
|
|
"compileCommands": "",
|
|
"browse": {
|
|
"path": [
|
|
"${workspaceFolder}"
|
|
],
|
|
"limitSymbolsToIncludedHeaders": true,
|
|
"databaseFilename": ""
|
|
},
|
|
"configurationProvider": "ms-vscode.makefile-tools"
|
|
},
|
|
{
|
|
"name": "Linux",
|
|
"intelliSenseMode": "gcc-x64",
|
|
"includePath": [
|
|
"${pocoIncludePath}"
|
|
],
|
|
"defines": [],
|
|
"forcedInclude": [],
|
|
"compilerPath": "/usr/bin/gcc",
|
|
"cStandard": "c11",
|
|
"cppStandard": "c++17",
|
|
"compileCommands": "",
|
|
"browse": {
|
|
"path": [
|
|
"${workspaceFolder}"
|
|
],
|
|
"limitSymbolsToIncludedHeaders": true,
|
|
"databaseFilename": ""
|
|
}
|
|
}
|
|
],
|
|
"version": 4
|
|
} |