【发布时间】:2020-11-22 09:39:51
【问题描述】:
我想在 CLion 中通过 cmake 添加 glfw 依赖项,但出现奇怪的错误,这是 CMakeLists.txt
cmake_minimum_required(VERSION 3.17)
project(hello_gl)
set(CMAKE_CXX_STANDARD 14)
find_package(glfw3 3.3 REQUIRED)
target_link_libraries(hello_gl glfw)
add_executable(hello_gl main.cpp)
CMake Error at CMakeLists.txt:8 (target_link_libraries):
Cannot specify link libraries for target "hello_gl" which is not built by
this project.
这是我得到的错误? cmake怎么找不到我的app?
【问题讨论】:
-
That answer 到重复的问题可以解决您的问题。