]> Creatis software - cpPlugins.git/blob - cmake/cpPlugins_Policies.cmake
...
[cpPlugins.git] / cmake / cpPlugins_Policies.cmake
1
2 ## ==========================
3 ## == Some useful policies ==
4 ## ==========================
5
6 SET(
7   _policies
8   CMP0015
9   CMP0020
10   CMP0042
11   )
12
13 ## ==============
14 ## == Use them ==
15 ## ==============
16
17 FOREACH(_p ${_policies})
18   IF(POLICY ${_p})
19     CMAKE_POLICY(SET ${_p} NEW)
20   ENDIF(POLICY ${_p})
21 ENDFOREACH(_p)
22
23 ## eof - $RCSfile$