32 lines
1006 B
CMake
32 lines
1006 B
CMake
cmake_minimum_required(VERSION 3.17)
|
|
project(Mandarin)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_library(MandarinLib Mandarin.h Mandarin.cpp)
|
|
|
|
# Let CMake fetch Google Test for us.
|
|
# https://github.com/google/googletest/tree/main/googletest#incorporating-into-an-existing-cmake-project
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
googletest
|
|
# Specify the commit you depend on and update it regularly.
|
|
URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
|
|
)
|
|
# For Windows: Prevent overriding the parent project's compiler/linker settings
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
FetchContent_MakeAvailable(googletest)
|
|
|
|
# Test target declarations.
|
|
add_executable(MandarinTest MandarinTest.cpp)
|
|
target_link_libraries(MandarinTest gtest_main MandarinLib)
|
|
include(GoogleTest)
|
|
gtest_discover_tests(MandarinTest)
|
|
|
|
add_custom_target(
|
|
runTest
|
|
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/MandarinTest
|
|
)
|
|
add_dependencies(runTest MandarinTest)
|