Skip to content

Commit

Permalink
Removed debug messages from new helper functions
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenAWhite committed Oct 1, 2018
1 parent 7314d74 commit 462587c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions cmake/BiogearsConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ function(stage_biogears_schema )
set(__RESULTS_VAR _stage_biogears_schema_results)
endif()
foreach( file IN LISTS Biogears_XSD_SCHEMA_LIST )
message(STATUS "string(REPLACE \"${Biogears_XSD_SCHEMA_DIR}\" \"${__DESTINATION}/xsd\" destination_file \"${file}\" )")
string(REPLACE "${Biogears_XSD_SCHEMA_DIR}" "${__DESTINATION}/xsd" destination_file "${file}" )
message(STATUS "destination_file=${destination_file}")
list(APPEND ${__RESULTS_VAR} ${destination_file} )
add_custom_command(
OUTPUT ${destination_file}
Expand Down Expand Up @@ -64,9 +62,7 @@ function(stage_biogears_data)
set(__RESULTS_VAR _stage_biogears_data_results)
endif()
foreach( file IN LISTS Biogears_XSD_DATA_LIST )
message(STATUS "string(REPLACE \"${Biogears_XML_DATA_DIR}\" \"${__DESTINATION}/\" destination_file \"${file}\" )")
string(REPLACE "${Biogears_XML_DATA_DIR}" "${__DESTINATION}" destination_file "${file}" )
message(STATUS "destination_file=${destination_file}")
list(APPEND ${__RESULTS_VAR} ${destination_file} )
add_custom_command(
OUTPUT ${destination_file}
Expand Down

0 comments on commit 462587c

Please sign in to comment.