AddFileDependencies.cmake 1.0 KB

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 distributed 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 (_deps)
  21. SET(_deps ${ARGN})
  22. ENDIF (_deps)
  23. SET_SOURCE_FILES_PROPERTIES(${_file} PROPERTIES OBJECT_DEPENDS "${_deps}")
  24. ENDMACRO(ADD_FILE_DEPENDENCIES)