mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-06 04:45:05 +00:00
54 lines
926 B
Text
54 lines
926 B
Text
|
## OSX artifacts
|
||
|
.DS_Store
|
||
|
|
||
|
## Dear ImGui artifacts
|
||
|
imgui.ini
|
||
|
|
||
|
## General build artifacts
|
||
|
*.o
|
||
|
*.obj
|
||
|
*.exe
|
||
|
examples/build/*
|
||
|
examples/*/Debug/*
|
||
|
examples/*/Release/*
|
||
|
examples/*/x64/*
|
||
|
|
||
|
## Visual Studio artifacts
|
||
|
.vs
|
||
|
ipch
|
||
|
*.opensdf
|
||
|
*.log
|
||
|
*.pdb
|
||
|
*.ilk
|
||
|
*.user
|
||
|
*.sdf
|
||
|
*.suo
|
||
|
*.VC.db
|
||
|
*.VC.VC.opendb
|
||
|
|
||
|
## Commonly used CMake directories
|
||
|
/build*/
|
||
|
|
||
|
## Xcode artifacts
|
||
|
project.xcworkspace
|
||
|
xcuserdata
|
||
|
|
||
|
## Emscripten artifacts
|
||
|
examples/*.o.tmp
|
||
|
examples/*.out.js
|
||
|
examples/*.out.wasm
|
||
|
examples/example_emscripten_opengl3/web/*
|
||
|
examples/example_emscripten_wgpu/web/*
|
||
|
|
||
|
## JetBrains IDE artifacts
|
||
|
.idea
|
||
|
cmake-build-*
|
||
|
|
||
|
## Unix executables from our example Makefiles
|
||
|
examples/example_glfw_opengl2/example_glfw_opengl2
|
||
|
examples/example_glfw_opengl3/example_glfw_opengl3
|
||
|
examples/example_glut_opengl2/example_glut_opengl2
|
||
|
examples/example_null/example_null
|
||
|
examples/example_sdl_opengl2/example_sdl_opengl2
|
||
|
examples/example_sdl_opengl3/example_sdl_opengl3
|