misc stuff

This commit is contained in:
2026-03-16 20:14:43 +01:00
parent e30f79e433
commit 03ee862e59
4 changed files with 28 additions and 0 deletions

1
compile_commands.json Symbolic link
View File

@@ -0,0 +1 @@
build/compile_commands.json

11
generate.bat Normal file
View File

@@ -0,0 +1,11 @@
echo Generating vs2026 project files...
where cmake >target 2>nul
if %ERRORLEVEL% neq 0 (
echo HIBA: A CMake nincs telepitve, vagy nincs hozzaadva a PATH-hoz.
pause
exit /b 1
)
cmake -G "Visual Studio 18 2026" -A x64
echo Done
PAUSE

8
generate.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "Generating Makefiles..."
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
echo "Generating compile_commands.json for clangd..."
ln -sf build/compile_commands.json compile_commands.json
echo "Done!"
echo "To compile run:\n cmake --build build -j":

8
imgui.ini Normal file
View File

@@ -0,0 +1,8 @@
[Window][Debug##Default]
Pos=60,60
Size=400,400
[Window][Hello World!]
Pos=147,38
Size=311,180