mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
fa4dee0e62
Use user provided lib/irrlichtmt if available Make it possible for a user to provide the IrrlichtMt dependency as subdirectory at `lib/irrlichtmt`. The subdirectory is added with the `EXCLUDE_FROM_ALL` flag to prevent `libirrlichtmt.a` or other header files to be installed. This enables the user to do the following to satisfy the IrrlichtMt dependency: git clone --depth 1 https://github.com/minetest/irrlicht.git lib/irrlichtmt cmake . -DRUN_IN_PLACE=TRUE
112 lines
1.4 KiB
Plaintext
112 lines
1.4 KiB
Plaintext
## Editors and development environments
|
|
*~
|
|
*.swp
|
|
*.bak*
|
|
*.orig
|
|
.DS_Store
|
|
# Vim
|
|
*.vim
|
|
# Kate
|
|
.*.kate-swp
|
|
.swp.*
|
|
# KDevelop4
|
|
.kdev4/
|
|
*.kdev4
|
|
# Eclipse (CDT and LDT)
|
|
.project
|
|
.cproject
|
|
.settings/
|
|
.buildpath
|
|
.metadata
|
|
# GNU Global
|
|
tags
|
|
!tags/
|
|
gtags.files
|
|
.idea
|
|
# Codelite
|
|
*.project
|
|
# Visual Studio Code & plugins
|
|
.vscode/
|
|
build/.cmake/
|
|
# Gradle
|
|
.gradle
|
|
|
|
## Files related to Minetest development cycle
|
|
/*.patch
|
|
*.diff
|
|
# GNU Patch reject file
|
|
*.rej
|
|
|
|
## Non-static Minetest directories or symlinks to these
|
|
/bin/
|
|
/games/*
|
|
!/games/devtest/
|
|
/cache
|
|
/textures/*
|
|
!/textures/base/
|
|
/screenshots
|
|
/sounds
|
|
/mods/*
|
|
!/mods/minetest/
|
|
/mods/minetest/*
|
|
!/mods/minetest/mods_here.txt
|
|
/worlds
|
|
/world/
|
|
/clientmods/*
|
|
!/clientmods/preview/
|
|
/client/mod_storage/
|
|
|
|
## Configuration/log files
|
|
minetest.conf
|
|
debug.txt
|
|
debug.txt.1
|
|
|
|
## Other files generated by Minetest
|
|
screenshot_*.png
|
|
testbm.txt
|
|
|
|
## Doxygen files
|
|
doc/Doxyfile
|
|
doc/html/
|
|
doc/doxygen_*
|
|
|
|
## MkDocs files
|
|
public/
|
|
doc/mkdocs/docs/*.md
|
|
doc/mkdocs/mkdocs.yml
|
|
|
|
## Build files
|
|
build/
|
|
CMakeFiles
|
|
Makefile
|
|
cmake_install.cmake
|
|
CMakeCache.txt
|
|
CPackConfig.cmake
|
|
CPackSourceConfig.cmake
|
|
src/test_config.h
|
|
src/cmake_config.h
|
|
src/cmake_config_githash.h
|
|
src/unittest/test_world/world.mt
|
|
/locale/
|
|
.directory
|
|
*.cbp
|
|
*.layout
|
|
*.o
|
|
*.a
|
|
*.ninja
|
|
.ninja*
|
|
*.gch
|
|
*.iml
|
|
test_config.h
|
|
cmake-build-debug/
|
|
cmake-build-release/
|
|
cmake_config.h
|
|
cmake_config_githash.h
|
|
CMakeDoxy*
|
|
compile_commands.json
|
|
*.apk
|
|
*.zip
|
|
|
|
# Optional user provided library folder
|
|
lib/irrlichtmt
|