File: policies.cmake

package info (click to toggle)
wxpython4.0 4.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 221,752 kB
  • sloc: cpp: 962,555; python: 230,573; ansic: 170,731; makefile: 51,756; sh: 9,342; perl: 1,564; javascript: 584; php: 326; xml: 200
file content (90 lines) | stat: -rw-r--r-- 2,418 bytes parent folder | download | duplicates (2)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#############################################################################
# Name:        build/cmake/policies.cmake
# Purpose:     CMake policies for wxWidgets
# Author:      Tobias Taschner
# Created:     2016-10-21
# Copyright:   (c) 2016 wxWidgets development team
# Licence:     wxWindows licence
#############################################################################

# Please keep the policies in the order of their numbers.

if(POLICY CMP0025)
    # Compiler id for Apple Clang is now AppleClang.
    cmake_policy(SET CMP0025 NEW)
endif()

if(POLICY CMP0028)
    # Double colon in target name means ALIAS or IMPORTED target.
    cmake_policy(SET CMP0028 NEW)
endif()

if(POLICY CMP0038)
    # Targets may not link directly to themselves.
    cmake_policy(SET CMP0038 NEW)
endif()

if(POLICY CMP0042)
    # MACOSX_RPATH is enabled by default.
    cmake_policy(SET CMP0042 NEW)
endif()

if(POLICY CMP0045)
    # Error on non-existent target in get_target_property.
    cmake_policy(SET CMP0045 NEW)
endif()

if(POLICY CMP0046)
    # Error on non-existent dependency in add_dependencies.
    cmake_policy(SET CMP0046 NEW)
endif()

if(POLICY CMP0048)
    # The project() command manages VERSION variables.
    cmake_policy(SET CMP0048 NEW)
endif()

if(POLICY CMP0049)
    # Do not expand variables in target source entries.
    cmake_policy(SET CMP0049 NEW)
endif()

if(POLICY CMP0053)
    # Simplify variable reference and escape sequence evaluation.
    cmake_policy(SET CMP0053 NEW)
endif()

if(POLICY CMP0054)
    # Only interpret if() arguments as variables or keywords when unquoted.
    cmake_policy(SET CMP0054 NEW)
endif()

if(POLICY CMP0060)
    # Link libraries by full path even in implicit directories.
    cmake_policy(SET CMP0060 NEW)
endif()

if(POLICY CMP0067)
    # Honor language standard in try_compile() source-file signature.
    cmake_policy(SET CMP0067 NEW)
endif()

if(POLICY CMP0072)
    # FindOpenGL prefers GLVND by default when available.
    cmake_policy(SET CMP0072 NEW)
endif()

if(POLICY CMP0079)
    # target_link_libraries() allows use with targets in other directories.
    cmake_policy(SET CMP0079 NEW)
endif()

if(POLICY CMP0091)
    # MSVC runtime library flags are selected by an abstraction.
    cmake_policy(SET CMP0091 NEW)
endif()

if(POLICY CMP0092)
    # MSVC warning flags are not in CMAKE_<LANG>_FLAGS by default.
    cmake_policy(SET CMP0092 NEW)
endif()