#include<Snap.h>
using namespace std;
void main()
{
PNGraph Graph=TNGraph::New();
Graph->AddNode(1);
Graph->AddNode(2);
Graph->AddEdge(1,2);
}
12:16:09 **** Rebuild of configuration Debug for project Graph ****
Info: Internal Builder is used for build
g++ "-IE:\\Snap-3.0\\snap-core" "-includeE:\\Snap-3.0\\snap-core" -O0 -g3 -Wall -c -fmessage-length=0 -o Graph.o "..\\Graph.cpp"
cc1plus.exe: fatal error: E:\Snap-3.0\snap-core: No such file or directory
compilation terminated.
我想添加我的Snap.h
庫我都做了路徑庫符號和鏈接路徑的一切,但沒有運氣。沒有找到這樣的文件或目錄,並沒有解決包含
關閉當然有-lE:Snap-3.0 \ snap-core並且當然有Snap.h頭文件,我的GCC鏈接與您給出的路徑相同-lE:Snap-3.0 \ snap-core仍然不起作用感謝您的回覆 –
我做了你所說的但現在問題來到這裏13:47:02 ****增量構建配置調試項目圖**** 信息:內部構建器用於構建 g ++「 -LE:\\ Snap-3.0 \\ snap-core「 C:/ MingGW/bin /../ lib/gcc/x86_64-w64-mingw32/5.1.0 /../../../../ x86_64-w64-mingw32/bin/ld.exe:找不到-lE:\ Snap-3.0 \ snap-core collect2.exe:錯誤:ld返回1退出狀態 –
更新了我的答案。 – besc