1CMP0016
2-------
3
4:command:`target_link_libraries` reports error if its only argument
5is not a target.
6
7In CMake 2.8.2 and lower the :command:`target_link_libraries` command silently
8ignored if it was called with only one argument, and this argument
9wasn't a valid target.  In CMake 2.8.3 and above it reports an error
10in this case.
11
12This policy was introduced in CMake version 2.8.3.  CMake version
13|release| warns when the policy is not set and uses ``OLD`` behavior.  Use
14the :command:`cmake_policy` command to set it to ``OLD`` or ``NEW`` explicitly.
15
16.. include:: DEPRECATED.txt
17