Skip to content

Commit

Permalink
工程新增cmake管理,支持用vscode直接编译
Browse files Browse the repository at this point in the history
itopsoft committed Dec 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 1395245 commit 5acf6fd
Showing 266 changed files with 298 additions and 59,955 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -5,3 +5,4 @@ bin64/data
module/VideoPlayer/lib/linux/ffmpeg
module/VideoPlayer/lib/linux/SDL2
bin64/VideoPlayer
build/
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "VideoPlayer(Debug_x64)",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/bin/win64/Debug/VideoPlayer.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/bin/win64/",
"environment": [{"name":"PATH","value":"C:/Qt/Qt5.13.2/5.13.2/msvc2017_64/bin"}],
"console": "externalTerminal"
},
{
"name": "VideoPlayer(Release_x64)",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/bin/win64/Release/VideoPlayer.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/bin/win64/",
"environment": [{"name":"PATH","value":"C:/Qt/Qt5.13.2/5.13.2/msvc2017_64/bin"}],
"console": "externalTerminal"
}
]
}
Loading

0 comments on commit 5acf6fd

Please sign in to comment.