标签: opengl cmake include dynamic-linking
我遵循了这个文档(https://cmake.org/cmake/help/v3.0/module/FindOpenGL.html)并在我的CMakeLists.txt中编写了以下代码...
if(NOT OPENGL_FOUND) message("there is no OpenGL!") endif()
...试图弄清楚如何使用CMake将OpenGl添加到项目中。消息不断弹出,这意味着系统没有OpenGL。如何将其添加到系统中?