The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for OpenGL-Sandbox-V1 was generated by
# inc::InlineMakeMaker <self>
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.38.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

# inserted by Dist::Zilla::Plugin::CheckLib 0.006
use Devel::CheckLib;
check_lib_or_exit(
    header => [ 'GL/gl.h', 'GL/glu.h' ],
    lib => 'GL',
    debug => '1',
);

use 5.014000;
use Inline::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Portions of OpenGL::Sandbox which depend on OpenGL 1.x API",
  "AUTHOR" => "Michael Conrad <mike\@nrdvana.net>",
  "CONFIGURE_REQUIRES" => {
    "Devel::CheckLib" => "1.03",
    "ExtUtils::MakeMaker" => 0,
    "Inline::MakeMaker" => "0.45"
  },
  "DISTNAME" => "OpenGL-Sandbox-V1",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.014000",
  "NAME" => "OpenGL::Sandbox::V1",
  "PREREQ_PM" => {
    "Carp" => 0,
    "Cwd" => 0,
    "Exporter" => 0,
    "Inline" => 0,
    "Math::Trig" => 0,
    "OpenGL" => 0,
    "OpenGL::Sandbox" => 0,
    "Try::Tiny" => 0,
    "overload" => 0,
    "parent" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "File::Spec::Functions" => 0,
    "FindBin" => 0,
    "Log::Any::Adapter" => 0,
    "Log::Any::Adapter::TAP" => 0,
    "OpenGL::Sandbox::Texture" => 0,
    "Test::More" => 0,
    "Time::HiRes" => 0
  },
  "VERSION" => "0.01_1",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "Carp" => 0,
  "Cwd" => 0,
  "Exporter" => 0,
  "File::Spec::Functions" => 0,
  "FindBin" => 0,
  "Inline" => 0,
  "Log::Any::Adapter" => 0,
  "Log::Any::Adapter::TAP" => 0,
  "Math::Trig" => 0,
  "OpenGL" => 0,
  "OpenGL::Sandbox" => 0,
  "OpenGL::Sandbox::Texture" => 0,
  "Test::More" => 0,
  "Time::HiRes" => 0,
  "Try::Tiny" => 0,
  "overload" => 0,
  "parent" => 0,
  "strict" => 0,
  "warnings" => 0
);

unless ( eval { Inline::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { Inline::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);