mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-23 22:22:07 +03:00
23 lines
693 B
Plaintext
23 lines
693 B
Plaintext
package idris2app
|
|
|
|
depends = network
|
|
|
|
sourcedir = "src"
|
|
|
|
-- Set if you want the build to output timing data
|
|
-- opts = "--timing 1"
|
|
|
|
-- Set if you want the executable to generate profiling data
|
|
-- (Currently supported by Racket and Chez back ends, others ignore it)
|
|
-- opts = "--profile"
|
|
|
|
-- Set if you want incremental builds. This is good for development, since
|
|
-- small changes compile faster, but bad for deployment since the resulting
|
|
-- executable runs at around half the speed.
|
|
-- (Alternatively: set the environment variable IDRIS2_INC_CGS=chez)
|
|
-- For this to work, you need to do the initial incremental build from clean.
|
|
-- opts = "--inc chez"
|
|
|
|
main = Idris.Main
|
|
executable = idris2
|