From b10a0daf5ae00e1b3a5552df8c52d36c607ae5b0 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Thu, 7 Jan 2021 00:31:00 +0300 Subject: [PATCH] [flatcc] fix hooks and conventions --- recipes/flatcc/all/conanfile.py | 2 +- recipes/flatcc/all/test_package/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/flatcc/all/conanfile.py b/recipes/flatcc/all/conanfile.py index 4d708e4bbfd65..ab5e2882412dd 100644 --- a/recipes/flatcc/all/conanfile.py +++ b/recipes/flatcc/all/conanfile.py @@ -5,7 +5,7 @@ class FlatccConan(ConanFile): name = "flatcc" description = "C language binding for Flatbuffers, an efficient cross platform serialization library" - topics = "conan", "flatbuffers", "serialization" + topics = ("conan", "flatbuffers", "serialization") url = "https://github.com/conan-io/conan-center-index" homepage = "https://github.com/dvidelabs/flatcc" license = "Apache-2.0" diff --git a/recipes/flatcc/all/test_package/CMakeLists.txt b/recipes/flatcc/all/test_package/CMakeLists.txt index 6a7405fd83e3c..965cebe862a97 100644 --- a/recipes/flatcc/all/test_package/CMakeLists.txt +++ b/recipes/flatcc/all/test_package/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.1) project(flatcc_example) include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)