Moves GUI sources from src to gui (#1011)
12
.vscode/launch.json
vendored
@ -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}"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -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)
|
||||||
|
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 405 B After Width: | Height: | Size: 405 B |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 200 B After Width: | Height: | Size: 200 B |
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 264 KiB After Width: | Height: | Size: 264 KiB |
Before Width: | Height: | Size: 109 B After Width: | Height: | Size: 109 B |
Before Width: | Height: | Size: 269 B After Width: | Height: | Size: 269 B |