Navigation


Changeset 1560:9084c6f94a0a in freeDiameter


Ignore:
Timestamp:
Jun 17, 2021, 1:05:27 AM (3 years ago)
Author:
Thomas Klausner <wiz@gatalith.at>
Branch:
default
Phase:
public
Message:

Require cmake 2.8.12 (from 2013) since current cmake warns about older versions.

Remove policy check for CMP0022. The variable INTERFACE_LINK_LIBRARIES it
affects is not used.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r1413 r1560  
    2121
    2222# CMake version
    23 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
     23CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12)
    2424
    2525# Location of additional CMake modules
  • libfdcore/CMakeLists.txt

    r1286 r1560  
    33
    44# Configuration for newer cmake
    5 cmake_policy(VERSION 2.6)
    6 if (POLICY CMP0022)
    7         cmake_policy(SET CMP0022 OLD)
    8 endif (POLICY CMP0022)
     5cmake_policy(VERSION 2.8.12)
    96
    107# Configuration parser
  • libfdproto/CMakeLists.txt

    r1286 r1560  
    33
    44# Configuration for newer cmake
    5 cmake_policy(VERSION 2.6)
    6 if (POLICY CMP0022)
    7         cmake_policy(SET CMP0022 OLD)
    8 endif (POLICY CMP0022)
     5cmake_policy(VERSION 2.8.12)
    96
    107# List of source files for the library
Note: See TracChangeset for help on using the changeset viewer.