mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Trying with 3.9
This commit is contained in:
parent
31aab47492
commit
82355cf1bc
2 changed files with 22 additions and 1 deletions
21
.cirrus.yml
Normal file
21
.cirrus.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
task:
|
||||
timeout_in: 120m
|
||||
freebsd_instance:
|
||||
matrix:
|
||||
- image_family: freebsd-13-0-snap
|
||||
|
||||
env:
|
||||
ASSUME_ALWAYS_YES: YES
|
||||
setup_script:
|
||||
- pkg update -f
|
||||
- pkg install bash
|
||||
- pkg install cmake
|
||||
- pkg install git
|
||||
build_script:
|
||||
- mkdir build
|
||||
- cd build
|
||||
- cmake ..
|
||||
- cmake --target unit
|
||||
test_script:
|
||||
- cd build
|
||||
- ctest --output-on-failure
|
|
@ -1,6 +1,6 @@
|
|||
cmake_policy(SET CMP0048 NEW)
|
||||
project(fast_double_parser LANGUAGES CXX VERSION 0.0.0.0)
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
cmake_minimum_required(VERSION 3.9)
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
if (NOT CMAKE_BUILD_TYPE)
|
||||
|
|
Loading…
Add table
Reference in a new issue