makefile.pl.win32_in

来自「mini http server,可以集成嵌入到程序中,实现简单的web功能」· WIN32_IN 代码 · 共 18 行

WIN32_IN
18
字号
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'			=> 'Pi3',
    'VERSION_FROM'	=> 'Pi3.pm', # finds $VERSION
    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM	=> 'Pi3.pm', # retrieve abstract from module
       AUTHOR     	=> 'Holger Zimmermann <zimpel@users.sourceforge.net>') : ()),
    'LIBS'			=> ['-l../../../PiAPI/PiAPI.lib -l../../../Pi2API/Pi2API.lib -l../../../Pi3API/Pi3API.lib -ld:\programme\devstudio\vc\lib\msvcrt.lib -ld:\programme\devstudio\vc\lib\oldnames.lib'], # e.g., '-lm'
    'DEFINE'		=> '', # e.g., '-DHAVE_SOMETHING'
	# Insert -I. if you add *.h files later:
    'INC'			=> '-I.. -I../../../PiAPI -I../../../Pi2API -I../../../Pi3API', # e.g., '-I/usr/include/other'
	# Un-comment this if you add C files to link with later:
    'OBJECT'		=> '$(O_FILES)', # link all the C files too
);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?