I solved the problem. There seems to be a static library with which I need to link and update the video card driver. In principle, I did it.
Step One: (Building GLFW)
If you already have the library installed, you do not need to do this, but the problem is when building the examples, you need to set the path to GLFW correctly. To save your time, create GLFW. For this
1- install cmake. 2- Open the command prompt and navigate to extern/glfw-3.0.4 (using cd command) 3- Type in command prompt: cmake -G "Visual Studio 12" 4- Open GLFW.sln and build all ( do it for Debug and Release modes) 5- Copy `glfw-3.0.4/src/Debug/glfw3.lib` into the `lib` directory and rename it to glfw3_d.lib. 6- Copy `glf3-3.0.4/src/Release/glfw3.lib` into the `lib` directory but don't rename it.
Step Two: (Building Samples)
1- Open the command prompt and navigate to "build" folder 2- Type in command prompt: cmake -G "Visual Studio 12" .. 3- Open superbible7.sln in build folder and build all. (do it for Debug and Release modes).
Execution examples
Now in the lib folder there are sb7.lib and sb7_d.lib . _d means debug mode. In my case, this was causing the problem, so you need to link it. Open a new project, add the path to sb7 include and glfw
C++->General-> Additional Include Directories
D:\CPP_Projects\VisualStudio\Modern OpenGL\sb7code-master\sb7code-master\include D:\CPP_Libraries\glfw-3.1.1\glfw-3.1.1\include
For linker
Linker->General->Additional Libraries Directories
D:\CPP_Libraries\glfw-3.1.1\glfw-3.1.1\install\src\Debug D:\CPP_Projects\VisualStudio\Modern OpenGL\GLFW\OpenGLSuperBible_7th\OpenGLSuperBible\ChapterOne\Debug
Linker->Input->Additional Dependencies
sb7_d.lib glfw3dll.lib opengl32.lib glu32.lib
Result

VERY IMPORTANT MESSAGE:
In my case, graphics cards support OpenGL 4.1. According to readme.txt ,
Please Note: EVEN IF YOU CAN CREATE SOURCES FOR YOUR FAVORITE SELECTION PLATFORM, YOU NEED THE LATEST OpenGL 4.x DRIVERS TO WORK THEM. PLEASE DO NOT PLAN A BOOK BECAUSE THE COMPUTER DOES NOT SUPPORT OpenGL 4.x. THANKS
In my case, there was a problem with GLFW_OPENGL_CORE_PROFILE , so I needed to update the video driver. I downloaded this opengl extension viewer software and it shows me a supported version of opengl. My responsive display is the AMD Mobility Radeon HD 5000. I visited their website and downloaded the latest driver for my display. Indeed, my graphics card now supports OpenGL 4.4, and this is a snapshot

You noticed that there is a button Check for driver updates. In my case, this directs me to a broken link, so you need to go to the site and check the latest adaptive display update. Thanks.