1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-04 22:14:25 +02:00

Merge pull request #3591 from Alexander-Wilms/gitignore

Add more patterns to .gitignore
This commit is contained in:
Ivan Savenko 2024-02-07 00:15:45 +02:00 committed by GitHub
commit 4130d5bad1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 5 deletions

7
.gitignore vendored
View File

@ -1,12 +1,15 @@
/client/vcmiclient /client/vcmiclient
/server/vcmiserver /server/vcmiserver
/launcher/.lupdate
/launcher/vcmilauncher /launcher/vcmilauncher
/mapeditor/.lupdate
/launcher/vcmilauncher_automoc.cpp /launcher/vcmilauncher_automoc.cpp
/conan-* /conan-*
build/ build/
.cache/* .cache/*
out/ out/
/.qt
*.dll *.dll
*.exe *.exe
*.depend *.depend
@ -42,6 +45,7 @@ VCMI_VS11.opensdf
.DS_Store .DS_Store
CMakeUserPresets.json CMakeUserPresets.json
compile_commands.json compile_commands.json
fuzzylite.pc
# Visual Studio # Visual Studio
*.suo *.suo
@ -62,5 +66,8 @@ compile_commands.json
/deps /deps
.vs/ .vs/
# Visual Studio Code
/.vscode/
# CLion # CLion
.idea/ .idea/

View File

@ -49,12 +49,14 @@ Information about building packages from the Arch User Repository (AUR) can be f
# Getting the sources # Getting the sources
VCMI is still in development. We recommend the following initial directory structure: We recommend the following directory structure:
. .
├── vcmi -> contains sources and is under git control ├── vcmi -> contains sources and is under git control
└── build -> contains build output, makefiles, object files,... └── build -> contains build output, makefiles, object files,...
Out-of-source builds keep the local repository clean so one doesn't have to manually exclude files generated during the build from commits.
You can get latest sources with: You can get latest sources with:
`git clone -b develop --recursive https://github.com/vcmi/vcmi.git` `git clone -b develop --recursive https://github.com/vcmi/vcmi.git`
@ -65,25 +67,25 @@ You can get latest sources with:
```sh ```sh
mkdir build && cd build mkdir build && cd build
cmake ../vcmi cmake -S ../vcmi
``` ```
# Additional options that you may want to use: # Additional options that you may want to use:
## To enable debugging: ## To enable debugging:
`cmake ../vcmi -D CMAKE_BUILD_TYPE=Debug` `cmake -S ../vcmi -D CMAKE_BUILD_TYPE=Debug`
**Notice**: The ../vcmi/ is not a typo, it will place makefile scripts into the build dir as the build dir is your working dir when calling CMake. **Notice**: The ../vcmi/ is not a typo, it will place makefile scripts into the build dir as the build dir is your working dir when calling CMake.
## To use ccache: ## To use ccache:
`cmake ../vcmi -D ENABLE_CCACHE:BOOL=ON` `cmake -S ../vcmi -D ENABLE_CCACHE:BOOL=ON`
## Trigger build ## Trigger build
`cmake --build . -- -j2` `cmake --build . -- -j2`
(-j2 = compile with 2 threads, you can specify any value) (-j2 = compile with 2 threads, you can specify any value)
That will generate vcmiclient, vcmiserver, vcmilauncher as well as .so libraries in **build/bin/** directory. That will generate vcmiclient, vcmiserver, vcmilauncher as well as .so libraries in the **build/bin/** directory.
# Package building # Package building