Boost C++ Libraries 哈囉~World

  1. Boost C++ Libraries 哈囉~World
    1. 測試環境
    2. 步驟
    3. 可能會遇到的問題
    4. 參考資料

Boost C++ Libraries 哈囉~World

原文連結: https://darkblack01.blogspot.com/2015/12/boost-c-libraries-world.html
移植時的最後更新日期: 2015-12-23T14:16:57.605+08:00

測試環境

python 版本: python 3
visual studio版本: 2013

步驟

原則上,是依照一篇簡單明瞭的教學進行。[1]

不過因為我太嫩了,遇到一些問題無法排解。
所以,在此只記錄問題與排解的過程。有空再來把步驟補齊。

成功了就會這樣

可能會遇到的問題

  1. 問題:錯誤 1 error LNK1104: 無法開啟檔案 'python34.lib'
    解法:添加專案 lib檔路徑 C:\Python34\libs
  2. 問題:錯誤 1 error C1083: 無法開啟包含檔案: 'pyconfig.h':
    解法:添加專案 include路徑 C:\Python34\include
  3. 問題:錯誤 1 error C1083: 無法開啟包含檔案: 'stdafx.h'
    解法:註解掉教學裡,這一行程式碼「#include "stdafx.h"」,即可。

參考資料