ctkFunctionGenerateProjectXml.cmake 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. ###########################################################################
  2. #
  3. # Library: CTK
  4. #
  5. # Copyright (c) Kitware Inc.
  6. #
  7. # Licensed under the Apache License, Version 2.0 (the "License");
  8. # you may not use this file except in compliance with the License.
  9. # You may obtain a copy of the License at
  10. #
  11. # http://www.commontk.org/LICENSE
  12. #
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. #
  19. ###########################################################################
  20. #
  21. #
  22. #
  23. FUNCTION(ctkFunctionGenerateProjectXml dir name target_directories is_superbuild)
  24. IF(NOT EXISTS ${dir})
  25. MESSAGE(FATAL_ERROR "Directory ${dir} doesn't exist!")
  26. ENDIF()
  27. SET(xml_subprojects )
  28. IF(${is_superbuild})
  29. SET(xml_subprojects ${xml_subprojects} " <SubProject name=\"SuperBuild\">\n")
  30. ENDIF()
  31. FOREACH(target_info ${target_directories})
  32. # extract target_dir and option_name
  33. STRING(REPLACE "^^" "\\;" target_info ${target_info})
  34. SET(target_info_list ${target_info})
  35. LIST(GET target_info_list 0 target_dir)
  36. LIST(GET target_info_list 1 option_name)
  37. #MESSAGE(STATUS target_dir:${target_dir})
  38. #MESSAGE(STATUS option_name:${option_name})
  39. # make sure the directory exists
  40. IF(NOT EXISTS ${target_dir}/CMakeLists.txt)
  41. MESSAGE(FATAL_ERROR "Target directory ${target_dir}/CMakeLists.txt doesn't exists !")
  42. ENDIF()
  43. # Remarks: Project.xml should contains all sub-project. That way
  44. # all dashboards should submit a similar file.
  45. #IF(${${option_name}})
  46. # extract project name from CMakeLists.txt
  47. FILE(STRINGS "${target_dir}/CMakeLists.txt" project_string
  48. REGEX "^ *(P|p)(R|r)(O|o)(J|j)(E|e)(C|c)(T|t)\\("
  49. LIMIT_COUNT 10)
  50. STRING(REGEX MATCH "\\((.*)\\)" target_project_name ${project_string})
  51. STRING(REGEX REPLACE "\\(|\\)" "" target_project_name ${target_project_name})
  52. IF(${target_project_name} STREQUAL "")
  53. MESSAGE(FATAL_ERROR "Failed to extract project name from ${target_dir}/CMakeLists.txt")
  54. ENDIF()
  55. #MESSAGE(STATUS target_project_name:${target_project_name})
  56. SET(xml_subprojects ${xml_subprojects} " <SubProject name=\"${target_project_name}\">\n")
  57. # Make sure the variable is cleared
  58. SET(dependencies )
  59. # get dependencies
  60. ctkMacroCollectTargetLibraryNames(${target_dir} dependencies)
  61. # Make sure the variable is cleared
  62. SET(ctk_dependencies)
  63. # filter dependencies starting with CTK
  64. ctkMacroGetAllCTKTargetLibraries("${dependencies}" ctk_dependencies)
  65. IF(${is_superbuild})
  66. SET(xml_subprojects ${xml_subprojects} " <Dependency name=\"SuperBuild\"/>\n")
  67. ENDIF()
  68. # Generate XML related to the dependencies
  69. FOREACH(dependency_name ${ctk_dependencies})
  70. SET(xml_subprojects ${xml_subprojects} " <Dependency name=\"${dependency_name}\"/>\n")
  71. ENDFOREACH()
  72. SET(xml_subprojects ${xml_subprojects} " </SubProject>\n")
  73. #ENDIF()
  74. ENDFOREACH()
  75. SET(xml_content "<Project name=\"${name}\">\n${xml_subprojects}</Project>")
  76. SET(filename "${dir}/Project.xml")
  77. FILE(WRITE ${filename} ${xml_content})
  78. MESSAGE(STATUS "Generated: ${filename}")
  79. ENDFUNCTION()