CMake Error at simple_layers/CMakeLists.txt:211 (add_library): The target name "test" is reserved when CTest testing is enabled.
时间: 2024-05-22 07:10:36 浏览: 178
CMakeLists.txt
这个错误是由于在使用 CTest 进行测试时,CMake 预定义了名为“test”的目标,因此你不能在你的项目中使用同样的名称。
你可以考虑更改你的目标名称,或者禁用 CTest 测试来解决这个问题。如果你需要使用 CTest 进行测试,你可以使用其他名称来命名你的目标。例如,将目标名称更改为“my_test”或“unit_test”。
阅读全文