经过大量的努力和研究,我设法制作了多个 cmake 目标,以将运行我的程序与运行代码测试分开。但我不喜欢我所做的,因为我看到CMakeList.txt
文件中有冗余。
目前我必须将每个新的源文件添加到两个目标,以便源目标可以使用该文件构建,并且测试目标可以构建,因为他们需要测试该文件。我不能将整个源目标扔到测试目标中,因为测试目标将包含两个主文件。
我对如何修复冗余的唯一想法是将源目标中的所有文件没有main.cpp
文件放入某个组,然后将该组附加到两个目标。这样,源目标仅包含main.cpp
文件和源文件组,而测试目标包含其所有测试和源文件组。所以文件组基本上是两个目标之间的所有重叠。我只是不知道该怎么做。
研究
这是我发现的其他堆栈溢出问题,它们帮助我到达了现在的位置:
代码
这是我用来试验 catch2 和 cmake 的测试项目,目前它适用于构建目标“tests”和“catch2Test”:
/catch2Test // <-- project folder
|---- /include
| |---- /catch2
| |---- catch.hpp
|---- /src
| |---- /myMath
| | |---- factorial.cpp
| | |---- factorial.h
| |---- main.cpp
| |---- CMakeLists.txt
|---- /test
| |---- test_main.cpp
| |---- test_factorial.cpp
| |---- CMakeLists.txt
|---- CMakeLists.txt
/include/catch2/catch.hpp
是 catch2 的库头文件
/src/myMath/
包含阶乘实现的头文件和代码文件,与catch2 教程中使用的相同。这也是阶乘测试实现的来源。
/src/main.cpp
是一个简单的主文件,其中包含 factorial.h 以进行阶乘数学,然后将其打印到 cout。
以下是实际重要的其余文件的显式代码:
/test/test_main.cpp
#define CATCH_CONFIG_MAIN
#include "../include/catch2/catch.hpp"
/test/test_factorial.cpp
#include "../include/catch2/catch.hpp"
#include "../src/myMath/factorial.h"
TEST_CASE("Factorials are computed", "[factorial]")
{
REQUIRE(factorial(0) == 1);
REQUIRE(factorial(1) == 1);
REQUIRE(factorial(2) == 2);
REQUIRE(factorial(3) == 6);
REQUIRE(factorial(10) == 3628800);
}
/CmakeLists.txt
cmake_minimum_required(VERSION 3.13)
set(CMAKE_CXX_STANDARD 14)
add_subdirectory(src)
add_subdirectory(test)
/test/CMakeLists.txt
add_executable(tests
../src/myMath/factorial.cpp ../src/myMath/factorial.h
../include/catch2/catch.hpp
test_main.cpp
test_factorial.cpp
)
/src/CMakeLists.txt
add_executable(catch2Test
main.cpp
myMath/factorial.cpp myMath/factorial.h
)
跑步
当我运行 catch2Test 目标时,我得到了想要的结果:
Hello, World!
Factorial 0! = 1
Factorial 1! = 1
Factorial 2! = 2
Factorial 3! = 6
Factorial 6! = 720
Factorial 10! = 3628800
Process finished with exit code 0
当我运行测试目标时,我也得到了想要的结果:
===============================================================================
All tests passed (5 assertions in 1 test case)
Process finished with exit code 0
一切正常,我只是不喜欢我目前的解决方案。
如何使我的目标更容易扩展?
另外,附带问题:包含头库的更合适的方法是什么?我认为它不应该add_executable()
像我在...中所做的/test/CMakeLists.txt
那样../include/catch2/catch.hpp