Creates initial project.
This commit is contained in:
70
.gitignore
vendored
70
.gitignore
vendored
@@ -0,0 +1,70 @@
|
||||
# Local configuration files (contain secrets - do NOT commit)
|
||||
# Developers should copy config.example to config and add their test credentials
|
||||
config
|
||||
*.config
|
||||
!config.example
|
||||
!*.config.example
|
||||
|
||||
# Build artifacts
|
||||
build/
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
*.so.*
|
||||
*.elf
|
||||
*.3dsx
|
||||
*.smdh
|
||||
*.cia
|
||||
*.3ds
|
||||
*.rpx
|
||||
*.wuhb
|
||||
*.vpk
|
||||
*.nro
|
||||
*.nsp
|
||||
|
||||
# CMake
|
||||
CMakeFiles/
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
*.cmake
|
||||
!CMakeLists.txt
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
*.code-workspace
|
||||
|
||||
# Container volumes and build contexts
|
||||
.docker-volumes/
|
||||
docker-context/
|
||||
|
||||
# Test outputs and coverage
|
||||
test-results/
|
||||
coverage/
|
||||
*.gcda
|
||||
*.gcno
|
||||
*.gcov
|
||||
|
||||
# Platform-specific build directories
|
||||
3ds/build/
|
||||
wiiu/build/
|
||||
switch/build/
|
||||
vita/build/
|
||||
android/build/
|
||||
ios/build/
|
||||
|
||||
# Dependencies
|
||||
deps/
|
||||
third-party/build/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.bak
|
||||
*.cache
|
||||
|
||||
Reference in New Issue
Block a user