Initial project skeleton.
This includes a working gyp-based build of an executable that uses LLVM.
This commit is contained in:
68
.gitignore
vendored
Normal file
68
.gitignore
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# ==============================================================================
|
||||
# Misc system junk
|
||||
# ==============================================================================
|
||||
|
||||
.DS_Store
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
.com.apple.*
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# ==============================================================================
|
||||
# Projects/IDE files
|
||||
# ==============================================================================
|
||||
|
||||
# Sublime Text
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# VIM
|
||||
.*.sw[a-z]
|
||||
*.un~
|
||||
Session.vim
|
||||
|
||||
# TextMate
|
||||
*.tmproj
|
||||
*.tmproject
|
||||
tmtags
|
||||
|
||||
# Eclipse
|
||||
.project
|
||||
.metadata
|
||||
|
||||
# ==============================================================================
|
||||
# Temp generated code
|
||||
# ==============================================================================
|
||||
|
||||
*.py[co]
|
||||
.coverage
|
||||
|
||||
# ==============================================================================
|
||||
# Logs and dumps
|
||||
# ==============================================================================
|
||||
|
||||
npm-debug.log
|
||||
private/
|
||||
|
||||
# ==============================================================================
|
||||
# Build system output
|
||||
# ==============================================================================
|
||||
|
||||
# npm/node
|
||||
.lock-wscript
|
||||
node_modules/
|
||||
node_modules/**/build/
|
||||
node_modules/.bin/
|
||||
|
||||
# coverage/etc
|
||||
scratch/
|
||||
|
||||
.anvil-cache
|
||||
.build-cache/
|
||||
build/
|
||||
build-out/
|
||||
build-gen/
|
||||
build-bin/
|
||||
build-test/
|
||||
Reference in New Issue
Block a user