ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/CMakeLists.txt
(Generate patch)

Comparing ray/CMakeLists.txt (file contents):
Revision 1.12 by greg, Fri Apr 18 20:51:49 2014 UTC vs.
Revision 1.17 by greg, Tue Mar 22 21:36:24 2016 UTC

# Line 1 | Line 1
1   cmake_minimum_required(VERSION 2.8.4)
2   project("radiance")
3  
4 + if(NOT ${CMAKE_VERSION} VERSION_LESS "2.8.11")
5 +  cmake_policy(SET CMP0020 NEW)
6 +  if(NOT ${CMAKE_VERSION} VERSION_LESS "3.0")
7 +    cmake_policy(SET CMP0042 NEW)
8 +    if(NOT ${CMAKE_VERSION} VERSION_LESS "3.1")
9 +      cmake_policy(SET CMP0054 NEW)
10 +    endif()
11 +  endif()
12 + endif()
13 +
14   enable_testing()
15   include(CTest)
16  
# Line 65 | Line 75 | IF( BUILD_PACKAGE )
75    INCLUDE(radianceCPack.cmake )
76   ENDIF( BUILD_PACKAGE )
77  
78 < set(CPACK_PACKAGE_VERSION_MAJOR 4)
79 < set(CPACK_PACKAGE_VERSION_MINOR 2)
80 < set(CPACK_PACKAGE_VERSION_PATCH a)
78 > set(CPACK_PACKAGE_VERSION_MAJOR 5)
79 > set(CPACK_PACKAGE_VERSION_MINOR 0)
80 > set(CPACK_PACKAGE_VERSION_PATCH a.8)
81   set(CPACK_PACKAGE_INSTALL_DIRECTORY "Radiance")
82   SET(CPACK_RESOURCE_FILE_WELCOME "${radiance_SOURCE_DIR}/Welcome.txt")
83   SET(CPACK_RESOURCE_FILE_README "${radiance_SOURCE_DIR}/README.txt")
# Line 77 | Line 87 | SET(CPACK_RESOURCE_FILE_LICENSE "${radiance_SOURCE_DIR
87   include(CPack)
88  
89   if(NOT BUILD_HEADLESS)
90 <  find_package(Qt4 COMPONENTS QtCore QtGui)
90 >  find_package(Qt5Widgets)
91    find_package(X11)
92   endif()
93  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines