mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 12:26:02 +00:00
4b83208a19
In preparation of our migration to the new Nimble-based setup and [nim-workspace][1], we switch to a new model where the vendor packages are no longer imported through a locally generated Nimble dir, but rather through an auto-generated `nimbus-build-system.paths` file that features regular `--path:` statements. This file will be imported only within the nimbus-build-system environment in order to avoid any unwanted interference in working copies based on the new Nimble setup. [1]: https://github.com/status-im/nim-workspace
40 lines
531 B
Plaintext
40 lines
531 B
Plaintext
*~
|
|
|
|
# Executables shall be put in an ignored build/ directory
|
|
/build
|
|
|
|
# Nimble packages
|
|
/vendor/.nimble
|
|
|
|
# ntags/ctags output
|
|
/tags
|
|
|
|
# a symlink that can't be added to the repo because of Windows
|
|
/nimbus.nims
|
|
|
|
# Ignore dynamic, static libs and libtool archive files
|
|
*.so
|
|
*.dylib
|
|
*.a
|
|
*.la
|
|
*.exe
|
|
*.dll
|
|
|
|
# Ignore generated C and doc files
|
|
nimcache
|
|
/nimbus/docs
|
|
|
|
/debug*.json
|
|
/block*.json
|
|
/.update.timestamp
|
|
*.generated.nim
|
|
/dist
|
|
|
|
# Nimble user files
|
|
nimble.develop
|
|
nimble.paths
|
|
|
|
# nimbus-build-system files
|
|
nimbus-build-system.paths
|
|
|