Skip to content

Commit 00ba8f2

Browse files
committed
Release 2023-04-20
2 parents 8f1b0ed + 3a179cc commit 00ba8f2

File tree

1,289 files changed

+29858
-2561
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,289 files changed

+29858
-2561
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ configuration:
1818
- Release
1919

2020
environment:
21-
COMMS_BRANCH: master
22-
COMMSDSL_BRANCH: master
21+
COMMS_BRANCH: v5.2
22+
COMMSDSL_BRANCH: v6.1
2323
matrix:
2424
- CPP_STD: 11
2525
- CPP_STD: 14

.github/workflows/actions_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Github Actions Build
33
on: [push]
44

55
env:
6-
COMMS_BRANCH: master
7-
COMMSDSL_BRANCH: master
6+
COMMS_BRANCH: v5.2
7+
COMMSDSL_BRANCH: v6.1
88

99
jobs:
1010

.travis.yml

Lines changed: 0 additions & 329 deletions
This file was deleted.

CMakeLists.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ option (UNIX_USE_CCACHE "Treat warnings as error" ON)
66
option (FORCE_EXTRA_BOOST_LIBS "Force linking to extra boost libraries" OFF)
77
option (USE_SANITIZERS "Compile with sanitizers." OFF)
88

9-
set(CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")
9+
set (CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")
10+
set (MIN_COMMSDSL_VERSION "6.1")
1011

1112
include(GNUInstallDirs)
1213

@@ -21,6 +22,11 @@ find_package(Threads REQUIRED)
2122
find_package(LibComms REQUIRED)
2223
find_program(COMMSDSL2COMMS commsdsl2comms PATH_SUFFIXES bin REQUIRED)
2324

25+
execute_process(COMMAND "${COMMSDSL2COMMS}" --version OUTPUT_VARIABLE commsdsl2comms_version)
26+
if ("${commsdsl2comms_version}" VERSION_LESS "${MIN_COMMSDSL_VERSION}")
27+
message (FATAL_ERROR "Version of commsdsl2comms is too old, required minimum is v${MIN_COMMSDSL_VERSION}.")
28+
endif ()
29+
2430
set (COMMON_SERVER_LIB "common_server")
2531
set (COMMON_CLIENT_LIB "common_client")
2632

0 commit comments

Comments
 (0)