#!/usr/bin/env perl

use 5.010;
use strict;
use warnings;
use FindBin '$Bin';

use Benchmark::Command;

Benchmark::Command::run(0, {
    'perl'             => [$^X, "-I$Bin/../lib", "-e1"],
    'load_gl'          => [$^X, "-MGetopt::Long", "-e1"],
    'load_glless'      => [$^X, (@ARGV && $ARGV[0] eq '--prod' ? () : ("-I$Bin/../lib")), "-MGetopt::Long::Less", "-e1"],
});
