From 816eccad54a7a085b2b14834b6cf0379e54eabca Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Fri, 23 Aug 2024 14:22:40 -0400 Subject: [PATCH] cmake_minimum_required() before project() to avoid cmake warn --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 7499bf0a..19210dff 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,5 +1,5 @@ -project(evm_runtime_tests) cmake_minimum_required(VERSION 3.12) +project(evm_runtime_tests) find_package(eosio)