diff options
| author | Amlal <amlal@zka.com> | 2024-07-11 23:51:17 +0200 |
|---|---|---|
| committer | Amlal <amlal@zka.com> | 2024-07-11 23:51:17 +0200 |
| commit | 4c52feb57fda9e9ee29c1f5310ec19d8cd9e4ca8 (patch) | |
| tree | 92cafaed135e4d79913d2064ee9e2592c8cd0a3a /.gitignore | |
| parent | a45e660211b0e262a53047ac09426fd736d6ef9c (diff) | |
[IMP] libzpt-core shared library and ManifestBuilder class.
Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 225 |
1 files changed, 225 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c0f6293 --- /dev/null +++ b/.gitignore @@ -0,0 +1,225 @@ +syntax: glob + +html/ +latex/ + +.cmake/ +.qtc_clangd/ +CMakeCache.txt +CMakeFiles/ +build.ninja +cmake_install.cmake +qtcsettings.cmake + +*.exec +*.rom + +NvVars + +x86_64/ + +*.epm +*.app + +*.com +*.log +*.slo +*.lo +*.o +*.a +*.la +*.lai +*.so +*.so.* +*.dll +*.dylib + +build + +# Qt-es +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 +*build-* +*.qm +*.prl + +# Qt unit tests +target_wrapper.* + +# QtCreator +*.autosave + +# QtCreator Qml +*.qmlproject.user +*.qmlproject.user.* + +# QtCreator CMake +CMakeLists.txt.user* + +# QtCreator 4.8< compilation database +compile_commands.json + +# QtCreator local machine specific files for imported projects +*creator.user* + +*_qmlcache.qrc + + +CMakeLists.txt.user + +limine-deploy + +.DS_Store + +### Eclipse ### +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +.vscode/settings.json + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# CDT- autotools +.autotools + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# Tern plugin +.tern-project + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans + +# Code Recommenders +.recommenders/ + +# Annotation Processing +.apt_generated/ +.apt_generated_test/ + +# Scala IDE specific (Scala & Java development for Eclipse) +.cache-main +.scala_dependencies +.worksheet + +# Uncomment this line if you wish to ignore the project description file. +# Typically, this file would be tracked if it contains build/dependency configurations: +#.project + +### Eclipse Patch ### +# Spring Boot Tooling +.sts4-cache/ + +# End of https://www.toptal.com/developers/gitignore/api/eclipse + +# Prerequisites +*.d + +.vs/ +.idea/ +*.out +*.iso + +# Object files +*.bin +*.o +*.ko +*.obj +*.elf +*.sys + +*.fd +*.EFI + +# Launch executable +*.iso +*.img + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libs +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Dyld Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +.fleet/ |
