horcrux/CMakeLists.txt

44 lines
1.4 KiB
CMake
Raw Normal View History

2020-12-13 17:20:41 +00:00
cmake_minimum_required(VERSION 3.13)
2020-12-12 22:29:29 +00:00
project(horcrux)
2020-12-11 11:38:02 +00:00
set(CMAKE_CXX_STANDARD 20)
# Download and unpack googletest at configure time
configure_file(CMakeLists.txt.in googletest-download/CMakeLists.txt)
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
2020-12-12 23:56:18 +00:00
RESULT_VARIABLE result
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download )
2020-12-11 11:38:02 +00:00
if(result)
2020-12-12 23:56:18 +00:00
message(FATAL_ERROR "CMake step for googletest failed: ${result}")
2020-12-11 11:38:02 +00:00
endif()
execute_process(COMMAND ${CMAKE_COMMAND} --build .
2020-12-12 23:56:18 +00:00
RESULT_VARIABLE result
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download )
2020-12-11 11:38:02 +00:00
if(result)
2020-12-12 23:56:18 +00:00
message(FATAL_ERROR "Build step for googletest failed: ${result}")
2020-12-11 11:38:02 +00:00
endif()
# Prevent overriding the parent project's compiler/linker
# settings on Windows
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
# Add googletest directly to our build. This defines
# the gtest and gtest_main targets.
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src
${CMAKE_CURRENT_BINARY_DIR}/googletest-build
EXCLUDE_FROM_ALL)
# The gtest/gtest_main targets carry header search path
# dependencies automatically when using CMake 2.8.11 or
# later. Otherwise we have to add them here ourselves.
if (CMAKE_VERSION VERSION_LESS 2.8.11)
2020-12-12 23:56:18 +00:00
include_directories("${gtest_SOURCE_DIR}/include")
2020-12-11 11:38:02 +00:00
endif()
enable_testing()
include_directories(src)
add_subdirectory(src)
add_subdirectory(test)