quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

.gitignore (1406B)


      1 # Random seed file created by test scripts and sample programs
      2 seedfile
      3 # MBEDTLS_PSA_INJECT_ENTROPY seed file created by the test framework
      4 00000000ffffff52.psa_its
      5 # Log files created by all.sh to reduce the logs in case a component runs
      6 # successfully
      7 quiet-make.*
      8 
      9 # CMake build artifacts:
     10 CMakeCache.txt
     11 CMakeFiles
     12 CTestTestfile.cmake
     13 cmake_install.cmake
     14 Testing
     15 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
     16 *.dir/
     17 # MSVC files generated by CMake:
     18 /*.sln
     19 /*.vcxproj
     20 /*.filters
     21 
     22 # Test coverage build artifacts:
     23 Coverage
     24 *.gcno
     25 *.gcda
     26 coverage-summary.txt
     27 
     28 # generated by scripts/memory.sh
     29 massif-*
     30 
     31 # Eclipse project files
     32 .cproject
     33 .project
     34 /.settings
     35 
     36 # Unix-like build artifacts:
     37 *.o
     38 *.s
     39 
     40 # MSVC build artifacts:
     41 *.exe
     42 *.pdb
     43 *.ilk
     44 *.lib
     45 
     46 # Python build artifacts:
     47 *.pyc
     48 
     49 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
     50 *.dir/
     51 
     52 # Microsoft CMake extension for Visual Studio Code generates a build directory by default
     53 /build/
     54 
     55 # Generated documentation:
     56 /apidoc
     57 
     58 # PSA Crypto compliance test repo, cloned by test_psa_compliance.py
     59 /psa-arch-tests
     60 
     61 # Editor navigation files:
     62 /GPATH
     63 /GRTAGS
     64 /GSYMS
     65 /GTAGS
     66 /TAGS
     67 /cscope*.out
     68 /tags
     69 
     70 # clangd compilation database
     71 compile_commands.json
     72 # clangd index files
     73 /.cache/clangd/index/
     74 
     75 # VScode folder to store local debug files and configurations
     76 .vscode