diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-09-19 12:50:02 -0700 |
---|---|---|
committer | Brent Stapleton <bstapleton@g.hmc.edu> | 2018-10-24 14:36:21 -0700 |
commit | f2d2a226ecd5df1d3398066d4a8a1eb01d684b74 (patch) | |
tree | 70ac9ee70eea9fe54905f2b0768b1587e7b7335e | |
parent | c406c1dc9d10aa04e8d6a97919488b31f2b68424 (diff) | |
download | uhd-f2d2a226ecd5df1d3398066d4a8a1eb01d684b74.tar.gz uhd-f2d2a226ecd5df1d3398066d4a8a1eb01d684b74.tar.bz2 uhd-f2d2a226ecd5df1d3398066d4a8a1eb01d684b74.zip |
cmake: Bump CMake minimum version to 2.8.12
This enables some interesting features we can now use in UHD, such as:
- target_compile_options
- add_compile_options
-rw-r--r-- | host/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 00b9102e4..1a4c2d0af 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -1,7 +1,7 @@ # # Copyright 2010-2018 Ettus Research, a National Instruments Company # -# SPDX-License-Identifier: GPL-3.0 +# SPDX-License-Identifier: GPL-3.0-or-later # ######################################################################## @@ -12,7 +12,7 @@ ######################################################################## # Project setup ######################################################################## -CMAKE_MINIMUM_REQUIRED(VERSION 2.8.2) +CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) IF(POLICY CMP0048) CMAKE_POLICY(SET CMP0048 NEW) # Suppress Version warnings ENDIF(POLICY CMP0048) |