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