Skip to content

Commit 8e6752f

Browse files
committed
🚀OpenGL.
1 parent 428b7a8 commit 8e6752f

File tree

18 files changed

+1444
-24
lines changed

18 files changed

+1444
-24
lines changed

lists/scoop-apps.bak

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Installed apps:
77
BaiduNetdisk 7.7.0.5 [apps]
88
cacert 2021-07-05 [main]
99
chocolatey 0.10.15 [apps]
10-
clash-for-windows 0.18.0 [apps]
10+
clash-for-windows 0.18.2 [apps]
1111
cuda 11.4.2_471.41 [main]
1212
dark 3.11.2 [main]
1313
dingtalk 6.0.8.31001 [apps]
@@ -32,14 +32,14 @@ Installed apps:
3232
innounp 0.50 [main]
3333
iobitdriverbooster 8.7.0.529 [apps]
3434
latex 21.6 [main]
35+
ldplayer *failed*
3536
lessmsi 1.8.1 [main]
3637
mactype-np 2021.1-rc1 [apps]
3738
maven 3.8.2 [main]
3839
mobaxterm 21.3 [apps]
3940
mouseinc 2.11.7 [apps]
4041
msiafterburner 4.6.4.16094 [apps]
4142
neofetch 7.1.0 [main]
42-
NoxPlayer 7.0.1.0 [apps]
4343
nvm 1.1.8 [main]
4444
obs-studio 27.0.1 [apps]
4545
octave 6.3.0 [apps]
@@ -53,12 +53,14 @@ Installed apps:
5353
processing 3.5.4 [apps]
5454
pwsh 7.1.4 [main]
5555
PyCharm-Professional 2021.2-212.4746.96 [apps]
56-
rainmeter 4.5.2.3541 [apps]
56+
rainmeter 4.5.3.3546 [apps]
5757
rufus 3.15 [apps]
5858
scoop-completion nightly-20210311 [apps]
5959
scoop-search 1.1.0 [main]
6060
steam nightly-20210301 [apps]
61+
steampp 2.4.12 [apps]
6162
sudo 0.2020.01.26 [main]
63+
telegram 3.1.0 [apps]
6264
TencentMeeting 2.7.6.415 [apps]
6365
TIM 3.3.0.21970 [apps]
6466
tomcat 10.0.10 [apps]
@@ -73,7 +75,6 @@ Installed apps:
7375
wechat nightly-20210320 [apps]
7476
wget 1.21.1-1 [main]
7577
Windows10Manager 3.3.5 [apps]
76-
win-dynamic-desktop 4.7.0 [apps]
7778
winlibs-mingw-llvm 11.1.0-12.0.0-9.0.0-r1 [apps]
7879
xyplorer 17.40.0100 [apps]
7980
yarn 1.22.5 [main]

lists/yarn-global.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ info "webpack@5.45.1" has binaries:
3131
- webpack
3232
info "webpack-cli@4.8.0" has binaries:
3333
- webpack-cli
34-
Done in 3.82s.
34+
Done in 3.33s.

local/projects.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,12 @@
5555
"paths": [],
5656
"tags": [],
5757
"enabled": true
58+
},
59+
{
60+
"name": "Java",
61+
"rootPath": "D:\\Game\\Github\\Java",
62+
"paths": [],
63+
"tags": [],
64+
"enabled": true
5865
}
5966
]

local/utils.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ goto :eof
7878

7979
@REM 备份其他
8080
mkdir %BACKUP_DIR%\others & cd %BACKUP_DIR%\others
81+
xcopy D:\Game\Github\C++\.vscode .vscode\ /e/y/d
8182
xcopy C:\Windows\System32\drivers\etc\hosts hosts\ /e/y/d
8283
xcopy D:\Game\Scoop\persist\maven\conf\settings.xml maven\conf\ /e/y/d
8384
xcopy D:\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 .\PowerShell\ /e/y/d
8485

85-
8686
@REM 备份 ~\
8787
mkdir %BACKUP_DIR%\user-config & cd %BACKUP_DIR%\user-config
8888
xcopy %HOME_PATH%\.conda\ .conda\ /e/y/d

others/.vscode/launch.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
{
22
"version": "0.2.0",
33
"configurations": [
4-
{
5-
"name": "Python: 当前文件",
6-
"type": "python",
7-
"request": "launch",
8-
"program": "${file}",
9-
"console": "integratedTerminal"
10-
},
114
{
125
"name": "C/C++",
136
"type": "cppdbg",

others/.vscode/settings.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
{
2-
"C_Cpp.errorSquiggles": "Enabled"
2+
"C_Cpp.errorSquiggles": "Enabled",
3+
"files.associations": {
4+
"stdlib.h": "c",
5+
"stdio.h": "c",
6+
"string.h": "c",
7+
"math.h": "c",
8+
"glut.h": "c",
9+
"windows.h": "c"
10+
},
11+
"code-runner.executorMap": {
12+
"c": "chcp 65001 && gcc *.c -o $fileNameWithoutExt -l glut32 -l glu32 -l opengl32 && ./$fileNameWithoutExt",
13+
"cpp": "chcp 65001 && g++ *.cpp -o $fileNameWithoutExt -l glut32 -l glu32 -l opengl32 && ./$fileNameWithoutExt",
14+
"pde": "processing-java --force --sketch=$dir --output=$dir/out --run"
15+
}
316
}

others/.vscode/tasks.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@
4040
"-g",
4141
"${file}",
4242
"-o",
43-
"${fileDirname}\\${fileBasenameNoExtension}.exe"
43+
"${fileDirname}\\${fileBasenameNoExtension}.exe",
44+
"-l", "glut32", // 使用glut
45+
"-l", "glu32",
46+
"-l", "opengl32"
4447
],
4548
"problemMatcher": ["$gcc"],
4649
"group": {
166 KB
Binary file not shown.
166 KB
Binary file not shown.

0 commit comments

Comments
 (0)