我有一个 CMakeList.txt 文件,在我的 startevn.cmake 中只有一个衬里
include(startevn.cmake)
,
project(startevn)
set(headers
startup.h
)
set(sources
system-init.cpp
)
new_library(startevn ${sources} ${headers})
现在我必须将启动移动到不同的目录。之后,我将以下行添加到“startevn.cmake”,
include_directories("/new_folder_location/sub_folder")
其中 sub_folder 是 startup.h 现在所在的位置,但编译器仍然显示找不到源文件:startup.h。我究竟做错了什么?