I am new to C++ and want to include in my first project glfw.
I downloaded the 32-bit windows binaries from: http://www.glfw.org/download.html
I copied the include files and the lib files into my project folder. Then I added them in the project properties (additional include and library directories).
My dependencies look like this:
glfw3.lib opengl32.lib freeglut.lib glew32.lib glu32.lib
Additionally I copied the .dll file into .\System32
Now I get the following errors:
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwWindowShouldClose" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwWindowHint" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwTerminate" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwSwapBuffers" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwSetInputMode" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwPollEvents" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwMakeContextCurrent" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwInit" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwGetKey" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
> Fehler LNK2019 Verweis auf nicht aufgel÷stes externes Symbol
> "__imp__glfwCreateWindow" in Funktion
> "_main". BonbonGame F:\Programme\TestGame\TestGame\TestGame\TestGame.obj 1
As in the precompiled binaries only visual studio 2010-2013 libraries are included (I assume) I tried to compile it myself. I thought this could cause the errors.
I downloaded the files from "Source Package" . I used the CMake Gui to generate the build. I chose in the configuration "Visual Studio 14 2015" and generated the files. There werde some VC++ files created so I openened them in Visual Studio. I don't know what to do next. I have tried to run the project but I got the message: "Could not start ...\Debug\ALL_BUILD".