Skip to content

Commit

Permalink
Include coverage example in root project
Browse files Browse the repository at this point in the history
  • Loading branch information
bernedom committed Jul 3, 2024
1 parent 4d15697 commit a8b76b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions chapter07/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ add_subdirectory(lwyu_example)
add_subdirectory(test_discovery_example)
add_subdirectory(fixture_example)
add_subdirectory(resource_group_example)
add_subdirectory(coverage_example)
add_subdirectory(custom_build_type)
2 changes: 1 addition & 1 deletion chapter07/custom_build_type/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ else()
# if the build type is not set force it to debug
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug CACHE STRING "" FORCE)
# If the build type is unknown fail configuration witn an error
# If the build type is unknown fail configuration with an error
elseif(NOT CMAKE_BUILD_TYPE IN_LIST allowedBuildTypes)
message(FATAL_ERROR "Unknown build type: ${CMAKE_BUILD_TYPE}")
endif()
Expand Down

0 comments on commit a8b76b4

Please sign in to comment.