visited 13 states (5.77%)
Create your own visited map of The World or Triposo world travel guide for Android

2015-01-07

BCB製作靜態Library並提供其他專案使用的方法

在C++ Builder中建立及使用libary(靜態聯結函式庫)需要依照以下步驟進行

1. 開啟C++ Builder

2. File/New/Other 選擇Libray 按OK

3. 此時會自動產生一個 Project1.bpf檔

4. 接著將要被打包的 .cpp透過 Add to project加入到專案中 ( .h不用)

5. 將此專案儲存起來 (可依照功能/目的來命名,不一定要和 .cpp/.h同名)

6. 將這些 .cpp用到的 .h放到此專案目錄下

7. Build此專案

8. 完成後,在目錄下會產生一個和專案同名的 .lib檔

9. 在拿到 .lib及 .h檔後,將這兩個檔案放到專案執行的目錄下或者,

10. .lib可放在Windows能搜尋到的目錄下即可,但 .h 一定要放在專案執行的目錄下

11. 透過Add File to project將 .lib加入到專案中 ( .h不用)

12. 在程式開頭處加入 #include "xxx.h"

13. 完成

這些也是同標籤文章 :

沒有留言: