Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 cmake 制作一个项目,我想添加测试。这是我第一次使用 cmake,所以我有点走在黑暗中。有没有人有任何关于如何开始这个过程的例子,或者我可以看一个开源项目?
谢谢
Just add this lines to your CMakeLists.txt
enable_testing() add_executable(exec_name exec_source_file) add_test(test_name exec_name)