diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-08-01 03:14:08 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-08-01 03:14:48 +0200 |
commit | 693455006830f29f79cc94b277060dfe39a8b66f (patch) | |
tree | 0ecf3ce83b6446c057708b92dfdfdc34150bd218 | |
parent | cda7e1b1f38f165ebf5c7865e23ff0f272df2bce (diff) | |
download | json-rpc-shell-693455006830f29f79cc94b277060dfe39a8b66f.tar.gz json-rpc-shell-693455006830f29f79cc94b277060dfe39a8b66f.tar.xz json-rpc-shell-693455006830f29f79cc94b277060dfe39a8b66f.zip |
CMakeLists.txt: declare compatibility with 3.27
Sadly, the 3.5 deprecation warning doesn't go away after this.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b50451..6afeaa4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.0) +cmake_minimum_required (VERSION 3.0...3.27) project (json-rpc-shell VERSION 1.1.0 LANGUAGES C) # Options |