第一次使用wxWidgets编写动态库(DLL和LIB)时,编写的命令:
第1步:hello.bkl文件
<?xml version="1.0"?>
<makefile>
<include file="presets/simple.bkl"/>
<lib id="hellolib">
<libname>hello</libname>
<sources>hello.c </sources>
</lib>
<dll id="hellodll">
<dllname>hello</dllname>
<libname>hello</libname>
<sources>hello.c </sources>
</dll>
</makefile>
第2步:bakefile -f msvc -o makefile hello.bkl生成 makefile文件。
第3步:nmake生成dll和lib文件。