summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CMP0019/CMP0019-WARN-stderr.txt
blob: f7b9c0e8894bf2ea73dcb0d2f9300806e70fc753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
^CMake Deprecation Warning at CMakeLists.txt:1 \(cmake_minimum_required\):
  Compatibility with CMake < 2.8.12 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.
+
CMake Warning \(dev\) in CMakeLists.txt:
  Policy CMP0019 is not set: Do not re-expand variables in include and link
  information.  Run "cmake --help-policy CMP0019" for policy details.  Use
  the cmake_policy command to set the policy and suppress this warning.

  The following variable evaluations were encountered:

  Evaluated directory INCLUDE_DIRECTORIES

    /usr/include/\${VAR_INCLUDE};/usr/include/normal

  as

    /usr/include/VAL_INCLUDE;/usr/include/normal

  Evaluated target some_target INCLUDE_DIRECTORIES

    /usr/include/\${VAR_INCLUDE};/usr/include/normal

  as

    /usr/include/VAL_INCLUDE;/usr/include/normal

  Evaluated link directories

    /usr/lib/\${VAR_LINK_DIRS};/usr/lib/normal

  as

    /usr/lib/VAL_LINK_DIRS;/usr/lib/normal

  Evaluated link library

    \${VAR_LINK_LIBS}

  as

    VAL_LINK_LIBS

This warning is for project developers.  Use -Wno-dev to suppress it.$