From c6f9e010bb0e284acb04776a07e140951ff5b7cb Mon Sep 17 00:00:00 2001 From: Felix Date: Thu, 23 Nov 2023 01:32:02 +0100 Subject: [PATCH] Fix cmake build for old versions (#8173) Adresses all these issues -> https://github.com/google/flatbuffers/issues/7994 https://github.com/google/flatbuffers/issues/7979 https://github.com/google/flatbuffers/issues/8049 Fix 7994, Fix 7979, Fix 8049 Co-authored-by: Derek Bailey --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ab699559a..c03688533 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -556,7 +556,7 @@ if(FLATBUFFERS_BUILD_TESTS) # Add a library so there is a single target that the generated samples can # link too. - if(MSVC) + if(MSVC OR ${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.20.0") add_library(flatsample INTERFACE) else() add_library(flatsample STATIC)