Skip to content

Commit

Permalink
vendor: Update vendored sources to igraph/igraph@ae93a3a
Browse files Browse the repository at this point in the history
fix: CodeCoverage.cmake compatibility with CMake 3.31 fix is taken from bilke/cmake-modules#91 fixes igraph/igraph#2712
  • Loading branch information
krlmlr committed Jan 8, 2025
1 parent 309bb35 commit 45f5630
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/vendor/cigraph/etc/cmake/CodeCoverage.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -384,14 +384,14 @@ function(setup_target_for_coverage_lcov)

# Show where to find the lcov info report
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
COMMAND ;
COMMAND true
COMMENT "Lcov code coverage info report saved in ${Coverage_NAME}.info."
${GCOVR_XML_CMD_COMMENT}
)

# Show info where to find the report
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
COMMAND ;
COMMAND true
COMMENT "Open ./${Coverage_NAME}/index.html in your browser to view the coverage report."
)

Expand Down Expand Up @@ -484,7 +484,7 @@ function(setup_target_for_coverage_gcovr_xml)

# Show info where to find the report
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
COMMAND ;
COMMAND true
COMMENT "Cobertura code coverage report saved in ${Coverage_NAME}.xml."
)
endfunction() # setup_target_for_coverage_gcovr_xml
Expand Down Expand Up @@ -585,7 +585,7 @@ function(setup_target_for_coverage_gcovr_html)

# Show info where to find the report
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
COMMAND ;
COMMAND true
COMMENT "Open ./${Coverage_NAME}/index.html in your browser to view the coverage report."
)

Expand Down
4 changes: 2 additions & 2 deletions src/vendor/igraph_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@

__BEGIN_DECLS

#define IGRAPH_VERSION "0.10.15-44-gc675c805a"
#define IGRAPH_VERSION "0.10.15-45-gae93a3a24"
#define IGRAPH_VERSION_MAJOR 0
#define IGRAPH_VERSION_MINOR 10
#define IGRAPH_VERSION_PATCH 15
#define IGRAPH_VERSION_PRERELEASE "44-gc675c805a"
#define IGRAPH_VERSION_PRERELEASE "45-gae93a3a24"

IGRAPH_EXPORT void igraph_version(const char **version_string,
int *major,
Expand Down

0 comments on commit 45f5630

Please sign in to comment.