Configuring done
CMake Error at CMakeLists.txt:5 (target_link_libraries):
Target "101_GlyphRendering_bin" links to:
igl::core
but the target was not found. Possible reasons include:
* There is a typo in the target name.
* A find_package call is missing for an IMPORTED target.
* An ALIAS target is missing.
Here is my CMakeLists.txt
:
cmake_minimum_required(VERSION 3.16)
project(101_GlyphRendering)
add_executable(${PROJECT_NAME}_bin main.cpp)
target_link_libraries(${PROJECT_NAME}_bin PUBLIC igl::core igl::glfw igl::opengl tutorials)
I opened the project and built it, an error occurred:
C1083 Cannot open include file:'directional/directional_viewer.h':No such file or dictory