Skip to content

Commit 5652d3c

Browse files
committed
Lower C++ standard to 14 and build on stretch.
1 parent 628d2bb commit 5652d3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: ubuntu:eoan
5+
- image: debian:stretch
66

77
steps:
88
- checkout

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
cmake_minimum_required(VERSION 3.8.2)
1+
cmake_minimum_required(VERSION 3.7.2)
22

3-
set(CMAKE_CXX_STANDARD 17)
3+
set(CMAKE_CXX_STANDARD 14)
44

55
project("doxygen2docset" LANGUAGES CXX C)
66

0 commit comments

Comments
 (0)