16 lines
414 B
CMake
16 lines
414 B
CMake
cmake_minimum_required(VERSION 3.26.0)
|
|
project(gtest_Graphics VERSION 0.1.0 LANGUAGES C CXX)
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
gtest
|
|
URL https://github.com/google/googletest/archive/refs/tags/release-1.12.1.zip
|
|
)
|
|
if (WIN32)
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
FetchContent_MakeAvailable(gtest)
|
|
endif()
|
|
include(GoogleTest)
|
|
set(GTEST_COLOR ON)
|
|
|
|
add_subdirectory(./ErrorTest) |