0

我正在用 cmake 制作一个项目,我想添加测试。这是我第一次使用 cmake,所以我有点走在黑暗中。有没有人有任何关于如何开始这个过程的例子,或者我可以看一个开源项目?

谢谢

4

1 回答 1

2

Just add this lines to your CMakeLists.txt

enable_testing()
add_executable(exec_name exec_source_file)
add_test(test_name exec_name)
于 2013-06-27T09:25:10.910 回答