Directory where to generate all files

The option --compile_dir change this directory.

Property definitions

nitc $ Toolchain :: root_compile_dir
	# Directory where to generate all files
	#
	# The option `--compile_dir` change this directory.
	fun root_compile_dir: String
	do
		var compile_dir = toolcontext.opt_compile_dir.value
		if compile_dir == null then compile_dir = "nit_compile"
		return compile_dir
	end
src/compiler/abstract_compiler.nit:148,2--156,4