/MyFolder/main.o:: In function 'main': /MyFolder/main.cpp:7: error: undefined reference to 'gluPerspective' :: error: collect2: ld returned 1 exit status
IDE: Qt Creator 2.0.0
Project type: Qt4 Console Application
Selected required modules: QtCore
The following source code was used:
The following project file was used:
#------------------------------------------------- # # Project created by QtCreator 2010-09-13T09:39:02 # #------------------------------------------------- QT += core QT -= gui TARGET = MyTarget CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp
You need to link against the GLU library. Add the following line to your project file:
Note that the shown code will not give a correctly-running program, because it is too incomplete.