Skip to content

Commit

Permalink
Fix CE due to missing snitch_main.hpp
Browse files Browse the repository at this point in the history
Closes #199.
  • Loading branch information
tocic committed Dec 1, 2024
1 parent f40e2df commit 8b4d148
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.14)

project(snitch LANGUAGES CXX VERSION 1.3.0)
project(snitch LANGUAGES CXX VERSION 1.3.1)

# Maximum lengths.
set(SNITCH_MAX_TEST_CASES 5000 CACHE STRING "Maximum number of test cases in a test application.")
Expand Down Expand Up @@ -83,6 +83,7 @@ set(SNITCH_INCLUDES
${PROJECT_SOURCE_DIR}/include/snitch/snitch_macros_test_case.hpp
${PROJECT_SOURCE_DIR}/include/snitch/snitch_macros_utility.hpp
${PROJECT_SOURCE_DIR}/include/snitch/snitch_macros_warnings.hpp
${PROJECT_SOURCE_DIR}/include/snitch/snitch_main.hpp
${PROJECT_SOURCE_DIR}/include/snitch/snitch_matcher.hpp
${PROJECT_SOURCE_DIR}/include/snitch/snitch_registry.hpp
${PROJECT_SOURCE_DIR}/include/snitch/snitch_reporter_catch2_xml.hpp
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('snitch', 'cpp',
default_options: ['cpp_std=c++20', 'default_library=static'],
version: '1.3.0'
version: '1.3.1'
)

cpp_arguments = []
Expand Down

0 comments on commit 8b4d148

Please sign in to comment.