Moves GUI sources from src to gui (#1011)

This commit is contained in:
Putta Khunchalee 2024-10-03 13:43:26 +07:00 committed by GitHub
parent 955bd28587
commit 4209655fbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
60 changed files with 8 additions and 6 deletions

12
.vscode/launch.json vendored
View File

@ -1,22 +1,22 @@
{ {
"configurations": [ "configurations": [
{ {
"name": "Main", "name": "GUI",
"type": "lldb", "type": "lldb",
"request": "launch", "request": "launch",
"args": [], "args": [],
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"windows": { "windows": {
"program": "${workspaceFolder}/build/src/Obliteration.exe", "program": "${workspaceFolder}/build/gui/Obliteration.exe",
"env": { "env": {
"Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin" "Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin"
} }
}, },
"linux": { "linux": {
"program": "${workspaceFolder}/build/src/obliteration" "program": "${workspaceFolder}/build/gui/obliteration"
}, },
"osx": { "osx": {
"program": "${workspaceFolder}/build/src/obliteration.app/Contents/MacOS/obliteration" "program": "${workspaceFolder}/build/gui/obliteration.app/Contents/MacOS/obliteration"
} }
}, },
{ {
@ -33,7 +33,9 @@
"kind": "bin" "kind": "bin"
} }
}, },
"args": ["--debug"], "args": [
"--debug"
],
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
} }
], ],

View File

@ -59,4 +59,4 @@ add_custom_target(kernel
add_dependencies(libgui kernel) add_dependencies(libgui kernel)
# Add GUI. # Add GUI.
add_subdirectory(src) add_subdirectory(gui)

View File

Before

Width:  |  Height:  |  Size: 229 B

After

Width:  |  Height:  |  Size: 229 B

View File

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 405 B

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 200 B

After

Width:  |  Height:  |  Size: 200 B

View File

Before

Width:  |  Height:  |  Size: 121 KiB

After

Width:  |  Height:  |  Size: 121 KiB

View File

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 264 KiB

View File

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 109 B

View File

Before

Width:  |  Height:  |  Size: 269 B

After

Width:  |  Height:  |  Size: 269 B