跟師兄學程式設計 之vs2010相對路徑配置

2021-06-06 05:31:58 字數 568 閱讀 3993

今天開始,爭取能將【跟師兄學程式設計】系列做下去,感謝劉師兄的鼎力支援。

vs2010相對路徑配置:

將需要新增的庫檔案在工程資料夾下新建檔案放置,一般為opencv和opengl等。以opencv為例,在工程資料夾下新建opencv檔案,在此資料夾下新建include和lib資料夾,分別將標頭檔案和lib dll放入兩個資料夾。

開啟工程的property pages

在configuration properties->c/c++->general下的additional include directories中新增opencv\include等需要包含的標頭檔案的資料夾。

同理在configuration properties->linkers->general下的additional library directories新增opencv\lib等。

這樣就解決了如果一台電腦上沒有安裝opencv也可以執行工程。

但是需要注意的是dll檔案需要跟exe檔案放到一起,一種方法是將其放在debug和release資料夾下,另一種是放到系統資料夾下,32位放在system32下,64位放在syswow64資料夾下。

vs2010配置boost程式設計環境

第二步 在d盤 我c盤空間不大,準備出至少10g的空間吧 建立乙個目錄boost,拷貝進去並解壓到當前資料夾。第三步 開始 程式 microsoft visual studio 2010 visual studio tools visual studio 命令提示 2010 開啟乙個控制台。編譯bj...

VS2010網路程式設計

客戶端程式 include include winsock2.h pragma comment lib,ws2 32.lib define ip str addr 127.0.0.1 define ip prot 6000 服務端埠號 define listen count max 20 服務端監聽...

vs2010 網路程式設計練習

include stdafx.h include hostconfig.h include winsock2.h include include pragma comment lib,ws2 32.lib pragma comment lib,netapi32.lib ifdef debug def...