Changeset - 56eaa5e88009
[Not reviewed]
0 1 0
Jan Kaluza - 9 years ago 2016-02-11 15:43:14
jkaluza@redhat.com
Use cmake_policy only for cmake 3.x.y
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
CMakeLists.txt
Show inline comments
 
cmake_minimum_required(VERSION 2.6)
 
project(libtransport)
 

	
 
if(${CMAKE_MAJOR_VERSION} GREATER 2)
 
cmake_policy(SET CMP0037 OLD)
 
endif()
 

	
 
message(STATUS "Variables to override default places where to find libraries:")
 
message(STATUS "|- cppunit : -DCPPUNIT_INCLUDE_DIR,  -DCPPUNIT_LIBRARY")
0 comments (0 inline, 0 general)