1
0

AddFileDependencies.cmake 1002 B

1234567891011121314151617181920212223242526272829
  1. # - ADD_FILE_DEPENDENCIES(source_file depend_files...)
  2. # Adds the given files as dependencies to source_file
  3. #
  4. #=============================================================================
  5. # Copyright 2006-2009 Kitware, Inc.
  6. #
  7. # Distributed under the OSI-approved BSD License (the "License");
  8. # see accompanying file Copyright.txt for details.
  9. #
  10. # This software is distributed WITHOUT ANY WARRANTY; without even the
  11. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. # See the License for more information.
  13. #=============================================================================
  14. # (To distribute this file outside of CMake, substitute the full
  15. # License text for the above reference.)
  16. macro(ADD_FILE_DEPENDENCIES _file)
  17. get_source_file_property(_deps ${_file} OBJECT_DEPENDS)
  18. if (_deps)
  19. set(_deps ${_deps} ${ARGN})
  20. else ()
  21. set(_deps ${ARGN})
  22. endif ()
  23. set_source_files_properties(${_file} PROPERTIES OBJECT_DEPENDS "${_deps}")
  24. endmacro()