
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
8 lines
131 B
Racket
8 lines
131 B
Racket
#lang info
|
|
(define collection 'multi)
|
|
(define setup-collects '("trivial"))
|
|
(define compile-omit-paths '(
|
|
"icfp-2016"
|
|
"test"
|
|
))
|