trivial/info.rkt
ben de518d458b ** info.rkt ignoring extra dirs
This git repo has 2 folders that should be ignored by `raco setup` and
 `raco pkg install`.
The new top-level `info.rkt` tells Racket to ignore them via:
- `setup-collects` = `raco setup` should only compile these folders
- `compile-omit-paths` = `raco pkg install` should ignore these folders
2016-03-23 13:30:20 -04:00

8 lines
131 B
Racket

#lang info
(define collection 'multi)
(define setup-collects '("trivial"))
(define compile-omit-paths '(
"icfp-2016"
"test"
))