Skip to content

Commit

Permalink
Show esl_config_h while building to debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 11, 2024
1 parent 921dfd5 commit 854fdba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 148 deletions.
12 changes: 11 additions & 1 deletion src/easel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,17 @@ set(EASEL_LICENSE "Freely distributed under the BSD open source license.")
set(EASEL_VERSION "0.49")
set(EASEL_URL "http://bioeasel.org/")

configure_file(esl_config.h.in esl_config.h)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/esl_config.h.cmake esl_config.h)
file(READ ${CMAKE_CURRENT_BINARY_DIR}/esl_config.h ESL_CONFIG_H)

message("-- Show configuration ")
message("HAVE_STLIB_H: ${HAVE_STLIB_H}")
message("HAVE_STRINGS_H: ${HAVE_STRINGS_H}")
message("HAVE_UNISTD_H: ${HAVE_UNISTD_H}")
message("HAVE_STDINT_H: ${HAVE_STDINT_H}")
message("-- Dumping esl_config.h --")
message("${ESL_CONFIG_H}")
message("-- End esl_config.h --")

set(EASEL_SOURCES
${CMAKE_CURRENT_BINARY_DIR}/esl_config.h
Expand Down
147 changes: 0 additions & 147 deletions src/easel/esl_config.h.in

This file was deleted.

0 comments on commit 854fdba

Please sign in to comment.