1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
########################################################################################
# This file is dedicated to the public domain. If your jurisdiction requires a #
# specific license: #
# #
# Copyright (c) Stephen McDowell, 2017-2024 #
# License: CC0 1.0 Universal #
# License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode #
########################################################################################
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(cpp-dir-underscores LANGUAGES CXX)
# "Header only library": add tests and include the directory
target_sources(exhale-projects-unit-tests
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/src/tests.cpp
)
target_include_directories(exhale-projects-tests-interface
INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/include
)
add_open_cpp_coverage_source_dirs(include src)
|