Improve tup config;

- Add config folder that contains tup config files.  There is a default
  config added to source control, but everything else in that folder is
  gitignored so you can add your own custom configurations.
- Remove and gitignore tup.config.
- This results in the following setup:
  - You can now create a tup.config symlink that points at the config
    you want to use.
  - Or, you can use the `tup variant` command to manage multiple build
    configurations at the same time (e.g. debug, release, wasm).
This commit is contained in:
bjorn 2019-12-29 10:52:44 -08:00
parent b18baf4e3c
commit 6060dc12b1
2 changed files with 2 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,6 +1,7 @@
.tup
.obj
*.config
tup.config
config/*
/build.sh
/watch.sh
/debug.sh