MacroAddFileDependencies.cmake 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #.rst:
  2. # MacroAddFileDependencies
  3. # ------------------------
  4. #
  5. # MACRO_ADD_FILE_DEPENDENCIES(<_file> depend_files...)
  6. #
  7. # Using the macro MACRO_ADD_FILE_DEPENDENCIES() is discouraged. There
  8. # are usually better ways to specify the correct dependencies.
  9. #
  10. # MACRO_ADD_FILE_DEPENDENCIES(<_file> depend_files...) is just a
  11. # convenience wrapper around the OBJECT_DEPENDS source file property.
  12. # You can just use set_property(SOURCE <file> APPEND PROPERTY
  13. # OBJECT_DEPENDS depend_files) instead.
  14. #=============================================================================
  15. # Copyright 2006-2009 Kitware, Inc.
  16. #
  17. # Distributed under the OSI-approved BSD License (the "License");
  18. # see accompanying file Copyright.txt for details.
  19. #
  20. # This software is distributed WITHOUT ANY WARRANTY; without even the
  21. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  22. # See the License for more information.
  23. #=============================================================================
  24. # (To distribute this file outside of CMake, substitute the full
  25. # License text for the above reference.)
  26. macro (MACRO_ADD_FILE_DEPENDENCIES _file)
  27. get_source_file_property(_deps ${_file} OBJECT_DEPENDS)
  28. if (_deps)
  29. set(_deps ${_deps} ${ARGN})
  30. else ()
  31. set(_deps ${ARGN})
  32. endif ()
  33. set_source_files_properties(${_file} PROPERTIES OBJECT_DEPENDS "${_deps}")
  34. endmacro ()