use 5.008003; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'Qt::Test', VERSION => '0.01_01', LICENSE => 'perl', PREREQ_PM => {}, ABSTRACT => 'Qt Test binding', AUTHOR => 'Dongxu Ma ', CC => 'g++', LD => 'g++', LDDLFLAGS => '-shared', XSOPT => '-C++ -hiertype', LIBS => '-L/usr/lib/qt4 -lQtTest', DEFINE => '-DQT_TEST_LIB -DQT_SHARED -DQT_NO_DEBUG', INC => '-I/usr/include -I/usr/include/qt4', # Un-comment this if you add C files to link with later: # OBJECT => '$(O_FILES)', # link all the C files too );