在Window

时间:2016-01-21 19:42:30

标签: c++ opengl netbeans

我正在尝试在Netbeans 8.1中设置OpenGL。我安装了MinGW作为C ++编译器,它的工作原理。

我想使用 GLEW GLFW 库,所以我已下载它们并创建了一个include文件夹,其中存储了所有.h文件和一个libs文件夹我存储了 glew32.lib glfw3.lib 。我已通过设置

在NetBeans中包含 include 文件夹

项目属性>构建> C ++编译器>包含目录

我已通过设置

在NetBeans中包含了 bin 文件夹

项目属性>构建>链接器>库

然后在我的 main.cpp 文件中,我插入了GLEW和GLFW的include,但是当我执行mi文件时,这让我输出错误

cd 'D:\Documenti\NetBeansProjects\Test'
C:\MinGW\msys\1.0\bin\make.exe -f Makefile CONF=Debug
"/C/MinGW/msys/1.0/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make.exe[1]: Entering directory `/d/Documenti/NetBeansProjects/Test'
"/C/MinGW/msys/1.0/bin/make.exe"  -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/test.exe
make.exe[2]: Entering directory `/d/Documenti/NetBeansProjects/Test'
mkdir -p dist/Debug/MinGW-Windows
g++     -o dist/Debug/MinGW-Windows/test build/Debug/MinGW-Windows/main.o -l glew32 -lglfw3
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lglew32
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lglfw3
collect2.exe: error: ld returned 1 exit status
make.exe[2]: *** [dist/Debug/MinGW-Windows/test.exe] Error 1
make.exe[2]: Leaving directory `/d/Documenti/NetBeansProjects/Test'
make.exe[1]: *** [.build-conf] Error 2
make.exe[1]: Leaving directory `/d/Documenti/NetBeansProjects/Test'
make.exe": *** [.build-impl] Error 2

BUILD FAILED (exit value 2, total time: 1s)

有谁知道如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

链接器找不到您的库,因为您没有告诉NetBeans存储它们的目录。请转到:

Project Properties -> Linker -> Additional Library Directories

并将此目录添加到NetBeans项目中。之后,在编译/链接时,您将看到其他链接器选项-L<path>