Skip to content

Commit

Permalink
GH-428: Bump minimum version for cmake and boost.
Browse files Browse the repository at this point in the history
Modified: Bump minimum version requirements for cmake (from 3.11.0 to 3.20)  and boost (from 1.67 to 1.72). (GH-428)
  • Loading branch information
AnarManafov committed Apr 27, 2022
1 parent 2c9d20e commit 0a3b1f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014-2020 GSI, Inc. All rights reserved.
# Copyright 2014-2022 GSI, Inc. All rights reserved.
#
#
project( DDS )
Expand All @@ -10,7 +10,7 @@ set(DDS_PROTOCOL_VERSION "2")
#
# Check if cmake has the required version
#
cmake_minimum_required( VERSION 3.11.0 FATAL_ERROR )
cmake_minimum_required( VERSION 3.20 FATAL_ERROR )

string(TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)

Expand Down Expand Up @@ -233,7 +233,7 @@ if(BUILD_TESTS)
set(Boost_Components ${Boost_Components} unit_test_framework)
endif(BUILD_TESTS)

find_package(Boost 1.67 REQUIRED COMPONENTS ${Boost_Components})
find_package(Boost 1.72 REQUIRED COMPONENTS ${Boost_Components})
if(Boost_FOUND)
set(local_boost_version "${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}")
endif(Boost_FOUND)
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Fixed: Replace std::iterator as it's deprecated (C++17).
Fixed: Tasks working directory is set to their slot directory instead of $DDS_LOCATION.
Added: every DDS module logs now its pid, group id and parent pid. (GH-403)
Added: Support for Task Assets. (GH-406)
Modified: Bump minimum version requirements for cmake (from 3.11.0 to 3.20) and boost (from 1.67 to 1.72). (GH-428)

### dds-session
Fixed: skip bad or non-session directories/files when performing clean and list operations.
Expand Down

0 comments on commit 0a3b1f4

Please sign in to comment.