/ Pbar / src / Pbar.jl
Pbar.jl
 1  @doc "Progress bar wrapper."
 2  module Pbar
 3  
 4  if get(ENV, "JULIA_NOPRECOMP", "") == "all"
 5      __init__() = begin
 6          include(joinpath(@__DIR__, "module.jl"))
 7          @eval _doinit()
 8      end
 9  else
10      occursin(string(@__MODULE__), get(ENV, "JULIA_NOPRECOMP", "")) && __precompile__(false)
11      include("module.jl")
12      __init__() = _doinit()
13      include("precompile.jl")
14  end
15  
16  end