72 lines
1.1 KiB
Plaintext
72 lines
1.1 KiB
Plaintext
### C++ template
|
|
# 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
|
|
|
|
### CMake template
|
|
CMakeLists.txt.user
|
|
CMakeCache.txt
|
|
CMakeFiles
|
|
CMakeScripts
|
|
Testing
|
|
Makefile
|
|
cmake_install.cmake
|
|
install_manifest.txt
|
|
compile_commands.json
|
|
CTestTestfile.cmake
|
|
_deps
|
|
CMakeUserPresets.json
|
|
cmake-build-*
|
|
|
|
### Conan template
|
|
# Conan build information
|
|
conan.lock
|
|
conanbuildinfo.*
|
|
conaninfo.txt
|
|
graph_info.json
|
|
|
|
## Various built-in generators
|
|
# cmake_find_package generator https://docs.conan.io/en/latest/reference/generators/cmake_find_package.html
|
|
Find*.cmake
|
|
|
|
# cmake_paths generator https://docs.conan.io/en/1.4/integrations/cmake/cmake_paths_generator.html
|
|
conan_paths.*
|
|
|
|
# Environment activation scripts produced by https://docs.conan.io/en/latest/mastering/virtualenv.html#virtualenv-generator
|
|
activate_run.ps1
|
|
activate_run.sh
|
|
deactivate_run.ps1
|
|
deactivate_run.sh
|
|
environment_run.ps1.env
|
|
environment_run.sh.env
|
|
|