Skip to content

Commit

Permalink
Set max CMake version, fix CI badge
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBowman committed Jul 29, 2024
1 parent f09f740 commit 0dc549d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.16..3.28)

project(ROBOTICSLAB_SPEECH LANGUAGES CXX)

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ To see how other programs call to `speechRecognition` and `Espeak` and configur

## Status

[![CI (Linux)](https://github.com/roboticslab-uc3m/speech/workflows/Continuous%20Integration/badge.svg)](https://github.com/roboticslab-uc3m/speech/actions)

[![Coverage Status](https://coveralls.io/repos/roboticslab-uc3m/speech/badge.svg)](https://coveralls.io/r/roboticslab-uc3m/speech)
[![Continuous Integration](https://github.com/roboticslab-uc3m/speech/actions/workflows/ci.yml/badge.svg)](https://github.com/roboticslab-uc3m/speech/actions/workflows/ci.yml)

[![Issues](https://img.shields.io/github/issues/roboticslab-uc3m/speech.svg?label=Issues)](https://github.com/roboticslab-uc3m/speech/issues)

Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/espeakClientExample/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.16..3.28)

project(espeakClientExample LANGUAGES CXX)

if(NOT YARP_FOUND)
find_package(YARP 3.6 REQUIRED COMPONENTS os)
find_package(YARP 3.8 REQUIRED COMPONENTS os)
endif()

if(NOT TARGET ROBOTICSLAB::SpeechIDL)
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/espeakExample/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.16..3.28)

project(espeakExample LANGUAGES CXX)

if(NOT YARP_FOUND)
find_package(YARP 3.6 REQUIRED COMPONENTS os)
find_package(YARP 3.8 REQUIRED COMPONENTS os)
endif()

if(NOT TARGET ROBOTICSLAB::Espeak)
Expand Down

0 comments on commit 0dc549d

Please sign in to comment.