我有一个项目结构如下:
|--assets/
|--core/
|--deps/
|--Catch2/
|--win32/
|--# Have Catch2 library installed here
|--include/
|--# Nothing here
|--src/
|--sample.cpp # No content in this file
|--tests/
|--test.cpp
|--CMakeLists.txt
|--main.cpp
|--CMakeLists.txt
顶级 CMakeLists.txt 内容是:
cmake_minimum_required (VERSION 3.8)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
project("My.Project")
add_executable(MyProject main.cpp)
# Copy all DLLs if windows:
if(WIN32)
file(GLOB_RECURSE DYNAMIC_LIBS "${CMAKE_CURRENT_SOURCE_DIR}/*.dll")
foreach(dll ${DYNAMIC_LIBS})
add_custom_command(TARGET AZTEC_EDITOR POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy
${dll} $<TARGET_FILE_DIR:AZTEC_EDITOR>)
endforeach()
else(APPLE)
endif()
add_subdirectory(core)
target_link_libraries(MyProject MyLib)
“core”文件夹中的 CMakeLists.txt 文件为:
file(GLOB HEADER_FILES "${CMAKE_CURRENT_SOURCE_DIR}/include/*.h")
file(GLOB SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
file(GLOB TEST_FILES "${CMAKE_CURRENT_SOURCE_DIR}/tests/*.cpp")
add_library(MyLib ${HEADER_FILES} ${SOURCE_FILES} ${TEST_FILES})
target_include_directories(MyLib PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
# Copy all DLLs if windows:
if(WIN32)
file(GLOB_RECURSE DYNAMIC_LIBS "${CMAKE_CURRENT_SOURCE_DIR}/*.dll")
foreach(dll ${DYNAMIC_LIBS})
add_custom_command(TARGET AZTEC_EDITOR_CORE POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy
${dll} $<TARGET_FILE_DIR:AZTEC_EDITOR_CORE>)
endforeach()
else(APPLE)
endif()
# Catch2 stuff:
if(WIN32)
find_package(Catch2 REQUIRED PATHS "${CMAKE_CURRENT_SOURCE_DIR}/deps/catch2/win32")
target_link_libraries(MyLib Catch2::Catch2)
endif()
include(CTest)
include(Catch)
catch_discover_tests(MyLib)
我的test.cpp
内容(来自 Catch2 文档,此测试应该失败):
#define CATCH_CONFIG_MAIN
#include "catch2/catch.hpp"
unsigned int Factorial(unsigned int number)
{
return number <= 1 ? number : Factorial(number - 1)*number;
}
TEST_CASE("Factorials are computed", "[factorial]")
{
REQUIRE(Factorial(1) == 2); // Should fail here.
REQUIRE(Factorial(2) == 2);
REQUIRE(Factorial(3) == 6);
REQUIRE(Factorial(10) == 3628800);
}
当我使用 生成 Visual Studio 文件cmake -G "Visual Studio 15" . -B .\build
时,通常在发现测试时,我会看到一个名为“RUN_TESTS”的项目分组在“CMakePredefinedTargets”下。但是,我再也看不到这个项目了。
此外,当我构建项目(使用 Visual Studio 2017)时,测试没有运行。请帮忙。谢谢。