Visual Studio 2012 C ++ OpenGL GLFW linker error

Estoy haciendo un desplazamiento lateral 2d en C ++ utilizando OpenGL en Visual Studio 2010 Express. Estoy tratando de compilar mi código, y se compila correctamente, pero recibo errores de enlace para las funciones GLFW que estoy inicializando en la función main (). Aquí está mi código:

#include <iostream>
#include <ctime>


#include <GL\glfw.h>


#include "Player.h"


void render();
void update();


Player Player1;
 //Cross platform sleep implementation
void _sleep(double ms)
{
    double st = clock();
    if(ms <= 0)
            ms = 10;
    while(clock() < (ms + st));
}

int main(int argc, char** argv)
{
    std::cout <<"Loading Prized Fighter"<< std::endl;
    glfwInit(); //Initialize GLFW

    //Create GLFW window
    if(glfwOpenWindow(800, 600, 5, 6, 5, 0, 8, 0, GLFW_WINDOW) != GL_TRUE)
        std::cout << "Error creating window!" << std::endl;

    //Set window title
    glfwSetWindowTitle("Prized Fighter");

    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();

    //Start main game loop
    //This calls the functions which update objects and render them to the screen
    while(true)
    {
        update();
        render();

        glfwSwapBuffers(); //Switch buffers (double rendering)
        _sleep(10.0); //Let a bit of CPU time for other processes
    }

    return 0;
}

/*
     - Render function -
      Used to draw objects to the screen
*/
void render()
{
     glClearColor(0.0f, 0.0f, 0.0f, 0.0f); //Color to clear the screen
     glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

     //TODO: Draw stuff here
     Player1.draw();
}

/*
     - Update function -
     Updates objects; states, locations, etc
*/
void update()
{
     //TODO: Update objects here
     Player1.update();
}

Cuando compilo, obtengo los siguientes errores:

1> ------ Se inició la compilación: Proyecto: Prized Fighter, Configuración: Debug Win32 ------ 1> main.obj: error LNK2019: símbolo externo sin resolver _glfwSwapBuffers referenciado en> función _WinMain @ 8

1> main.obj: error LNK2019: símbolo externo no resuelto _glfwSetWindowTitle al que se hace referencia en> función _WinMain @ 8

1> main.obj: error LNK2019: símbolo externo no resuelto _glfwOpenWindow al que se hace referencia en> función _WinMain @ 8

1> main.obj: error LNK2019: símbolo externo no resuelto _glfwInit referenciado en la función> _WinMain @ 8

1> MSVCRTD.lib (crtexew.obj): error LNK2019: símbolo externo sin resolverWinMain @ 16> referenciado en la función __tmainCRTStartup

1> c: \ users \ brennan \ documents \ visual studio 2010 \ Projects \ Prized Fighter \ Debug \ Prized> Fighter.exe: error fatal LNK1120: 5 externos no resueltos ========== Build: 0 se realizó correctamente, 1 error, 0 actualizado, 0 omitido ==========

¿Qué está saliendo mal durante el enlace? ¿Hay algún error en el código?

Respuestas a la pregunta(3)

Su respuesta a la pregunta