Skip to content

Commit

Permalink
Print out the git hash and commit date for each plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
  • Loading branch information
imikejackson committed Jul 11, 2019
1 parent 8d06a4e commit b0b781a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions CMakeLists.txt
Expand Up @@ -467,12 +467,9 @@ message(STATUS "* TBB (${TBB_VERSION}) ${TBB_INSTALL_DIR}")
message(STATUS "* -------------- Plugins ------------------------------------------------------") message(STATUS "* -------------- Plugins ------------------------------------------------------")
foreach(d3dPlugin ${DREAM3D_ALL_PLUGINS}) foreach(d3dPlugin ${DREAM3D_ALL_PLUGINS})
get_property(PluginNumFilters GLOBAL PROPERTY ${d3dPlugin}_NumFilters) get_property(PluginNumFilters GLOBAL PROPERTY ${d3dPlugin}_NumFilters)
message(STATUS "* ${d3dPlugin}: [${DREAM3D_ENABLE_${d3dPlugin}}] ${PluginNumFilters} Filters") get_property(PluginGitHash GLOBAL PROPERTY ${d3dPlugin}_GIT_HASH)
get_property(PluginCommitDate GLOBAL PROPERTY ${d3dPlugin}_GIT_COMMIT_DATE)
message(STATUS "* ${d3dPlugin}: [${DREAM3D_ENABLE_${d3dPlugin}}] ${PluginNumFilters} Filters Git:${PluginGitHash} ${PluginCommitDate}")
endforeach() endforeach()
message(STATUS "*******************************************************************************") message(STATUS "*******************************************************************************")


# get_target_property( sources dream3d_py SOURCES)
# foreach(source ${sources})
# message(STATUS "${source}")
# endforeach(source ${sources})

0 comments on commit b0b781a

Please sign in to comment.