Refactor project structure and update configurations
The project now builds.
- Updated .vscode/launch.json and .vscode/tasks.json for improved
development workflow
- Modified Makefile.am, configure, and configure.ac for build process
enhancements
- Updated corelogic/Makefile.am and
corelogic/include/sensors/interoceptor.h
- Renamed corelogic/main.cpp to main.cpp for better project organization
This commit is contained in:
Vendored
+5
-5
@@ -13,18 +13,18 @@
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}/configure",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/b"
|
||||
"cwd": "${workspaceFolder}/b"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": ["$gcc"],
|
||||
"dependsOn": ["Create Build Directory"],
|
||||
"detail": "Runs the configure script to prepare the build environment."
|
||||
},
|
||||
{
|
||||
"label": "build",
|
||||
"label": "Build",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"options": {
|
||||
@@ -35,7 +35,7 @@
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": ["$gcc"],
|
||||
"dependsOn": "Configure",
|
||||
"dependsOn": ["Configure"],
|
||||
"detail": "Builds the project using make."
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user