Author: akhaldi
Date: Wed Oct 22 16:56:56 2014
New Revision: 64894

URL: http://svn.reactos.org/svn/reactos?rev=64894&view=rev
Log:
[CMAKE]
* Allow the use of the LOCATION property with new CMake versions.

Modified:
    trunk/reactos/CMakeLists.txt

Modified: trunk/reactos/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/CMakeLists.txt?rev=64894&r1=64893&r2=64894&view=diff
==============================================================================
--- trunk/reactos/CMakeLists.txt        [iso-8859-1] (original)
+++ trunk/reactos/CMakeLists.txt        [iso-8859-1] Wed Oct 22 16:56:56 2014
@@ -4,6 +4,11 @@
 if(POLICY CMP0017)
     # Shadow cmake provided modules
     cmake_policy(SET CMP0017 OLD)
+endif()
+
+if(POLICY CMP0026)
+    # Allow use of the LOCATION property
+    cmake_policy(SET CMP0026 OLD)
 endif()
 
 project(REACTOS)


Reply via email to