Skip to content

Commit 9ae749e

Browse files
Merge pull request #16 from connectivecpp/develop
Merging Develop to Main
2 parents b59cc70 + b5520ba commit 9ae749e

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/workflows/build_run_unit_test_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build_matrix:
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest, macos-14]
15+
os: [ubuntu-latest, windows-latest, macos-15]
1616
# os: [ubuntu-latest]
1717
runs-on: ${{ matrix.os }}
1818
defaults:

cpp_file_for_gh.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Cliff note - I've burned hours and hours trying to get the GitHub Languages percentage
2+
// histogram to be correct with respect to having C++ files in the Presentations repo.
3+
//
4+
// So this file is simply a C++ file that doesn't really do anything.
5+
6+
int main() {
7+
return 0;
8+
}

examples/intro_generic_programming/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ target_compile_features ( intro_generic_programming_test PRIVATE cxx_std_20 )
1515
# add dependencies
1616
include ( ../../cmake/download_cpm.cmake )
1717

18-
CPMAddPackage ( "gh:catchorg/Catch2@3.7.0" )
18+
CPMAddPackage ( "gh:catchorg/Catch2@3.8.0" )
1919
CPMAddPackage ( "gh:TimQuelch/decimal#1.0.0" )
2020

2121
# link dependencies

examples/std_span/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ target_compile_features ( std_span_test PRIVATE cxx_std_20 )
1515
# add dependencies
1616
include ( ../../cmake/download_cpm.cmake )
1717

18-
CPMAddPackage ( "gh:catchorg/Catch2@3.7.0" )
18+
CPMAddPackage ( "gh:catchorg/Catch2@3.8.0" )
1919

2020
# link dependencies
2121
target_link_libraries ( std_span_test PRIVATE Catch2::Catch2WithMain )

examples/unit_test_with_catch2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ target_compile_features ( unit_test_with_catch2_test PRIVATE cxx_std_20 )
1515
# add dependencies
1616
include ( ../../cmake/download_cpm.cmake )
1717

18-
CPMAddPackage ( "gh:catchorg/Catch2@3.7.0" )
18+
CPMAddPackage ( "gh:catchorg/Catch2@3.8.0" )
1919

2020
# link dependencies
2121
target_link_libraries ( unit_test_with_catch2_test PRIVATE Catch2::Catch2WithMain )

0 commit comments

Comments
 (0)