optimiser-solver/.vscode/c_cpp_properties.json
Geir Horn 36fe843446 First release
- Added build script and AMPL license file
- Fixed merge errors for the makefile
- Extended the makefile header
- Added initial AMQ message topics
- Tested remote build
- Removed AMPL license file
- Validated build script
- Accepting the metric definition message from the EMS
- Execution control status messages + solver type command line option
- Executing solver component
- Added instructions on use to the Solver Component source file
- Explicit close of subscriptions in destrcutors if network active.
- Correct handling of metric list messages and subscriptions
- Adding correct message and connection properties
- Debugging message filtering with Fotis

Change-Id: I8940daac2fce3365c24a4262a0a1326353d7e97a
2024-01-25 13:23:56 +01:00

37 lines
1.3 KiB
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": [
"/home/GHo/Documents/Code/CxxOpts/include",
"/home/GHo/Documents/Code/Theron++",
"/opt/AMPL/amplapi/include/",
"${workspaceFolder}/**",
"/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13"
],
"defines": [],
"cStandard": "c23",
"intelliSenseMode": "${default}",
"compilerPath": "/usr/bin/g++",
"compilerArgs": [
"-std=c++23",
"-I/home/GHo/Documents/Code/Theron++",
"-I/home/GHo/Documents/Code/CxxOpts/include",
"-I/opt/AMPL/amplapi/include/"
],
"cppStandard": "c++23",
"mergeConfigurations": false,
"configurationProvider": "ms-vscode.makefile-tools",
"browse": {
"path": [
"/home/GHo/Documents/Code/Theron++",
"/home/GHo/Documents/Code/CxxOpts/include",
"/opt/AMPL/amplapi/include/",
"/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13"
],
"limitSymbolsToIncludedHeaders": false
}
}
],
"version": 4
}