当前位置: 首页 > 工具软件 > Bakefile > 使用案例 >

How to make dll and lib using bakefile.

易骁
2023-12-01

第一次使用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文件。

 类似资料:

相关阅读

相关文章

相关问答