diff options
| author | Sebastian Park <SebPark03@gmail.com> | 2024-04-10 02:45:04 -0400 |
|---|---|---|
| committer | Sebastian Park <SebPark03@gmail.com> | 2024-04-10 02:45:04 -0400 |
| commit | 47cd8a592ecad52c1b01f27d23476c0a5afeb7f1 (patch) | |
| tree | 36b9abaff4e92a4a6df0d5ecb0e43e05c3aefd48 /wave-sim/.gitignore | |
| parent | fd19124693bb32835ad97802ba1950cd5202dbd2 (diff) | |
initial
Diffstat (limited to 'wave-sim/.gitignore')
| -rw-r--r-- | wave-sim/.gitignore | 189 |
1 files changed, 189 insertions, 0 deletions
diff --git a/wave-sim/.gitignore b/wave-sim/.gitignore new file mode 100644 index 0000000..f9ddc77 --- /dev/null +++ b/wave-sim/.gitignore @@ -0,0 +1,189 @@ +# ------------------------------------ +# CS 2240 gitignore +# ------------------------------------ + +# Eigen and GLEW (so Gradescope submission is easier) +Eigen/ +glew/ + +# MacOS & clang files +**/.DS_Store +.qtc_clangd/ + +# Windows & MinGW files +*.Debug +*.Release + +# Visual Studio Code files +.vscode + +# Visual Studio files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# Required for Qt Creator w/ CMake +CMakeLists.txt.user* + +# ------------------------------------ +# Mysterious Qt Things (May Be Obsolete) +# ------------------------------------ + +object_script.*.Release +object_script.*.Debug +*_plugin_import.cpp +/.qmake.cache +/.qmake.stash +*.pro.user +*.pro.user.* +*.qbs.user +*.qbs.user.* +*.moc +moc_*.cpp +moc_*.h +qrc_*.cpp +ui_*.h +*.qmlc +*.jsc +Makefile* +*build-* +*.qm +*.prl + +*.autosave + +*.qmlproject.user +*.qmlproject.user.* + +compile_commands.json + +*creator.user* + +*_qmlcache.qrc + +# ------------------------------------ +# Taken from github/gitignore/c++ +# ------------------------------------ + +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# ------------------------------------ +# Generated by Qt Creator (w/ cmake) +# ------------------------------------ + +*~ +*.autosave +*.a +*.core +*.moc +*.o +*.obj +*.orig +*.rej +*.so +*.so.* +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc +/.qmake.cache +/.qmake.stash + +# qtcreator generated files +*.pro.user* + +# xemacs temporary files +*.flc + +# Vim temporary files +.*.swp + +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +*.dll +*.exe + +# ------------------------------------ +# Allow OBJ Files Just For Mesh +# ------------------------------------ + +!meshes/*.obj + |
