mirror of
https://github.com/MaJerle/lwshell.git
synced 2025-01-25 13:02:54 +08:00
Update CMake and vscode
This commit is contained in:
parent
6a7a247d44
commit
1dba5ffad7
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -8,7 +8,7 @@
|
||||
"name": "(Windows) Launch",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}\\build\\LwSHELL.exe",
|
||||
"program": "${workspaceFolder}\\build\\LwLibPROJECT.exe",
|
||||
"miDebuggerPath": "c:\\msys64\\mingw64\\bin\\gdb.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
|
18
.vscode/tasks.json
vendored
18
.vscode/tasks.json
vendored
@ -28,6 +28,22 @@
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Rebuild project",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"--build",
|
||||
"\"build\"",
|
||||
"--clean-first"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
],
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Clean project",
|
||||
@ -46,7 +62,7 @@
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Run application",
|
||||
"command": "${workspaceFolder}\\build\\LwSHELL.exe",
|
||||
"command": "${workspaceFolder}\\build\\LwLibPROJECT.exe",
|
||||
"args": [],
|
||||
"problemMatcher": [],
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.0.0)
|
||||
project(LwSHELL VERSION 0.1.0)
|
||||
project(LwLibPROJECT VERSION 0.1.0)
|
||||
|
||||
include(CTest)
|
||||
enable_testing()
|
||||
|
Loading…
x
Reference in New Issue
Block a user