From d1ca68083aa456d80b4f6816acdb3a2f50111d4d Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Sat, 15 Jul 2023 20:27:12 +1000 Subject: [PATCH] put `cmake_minimum_required` before `project` This suppresses a warning when configuring with CMake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9791094..9fe733f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # CMakeLists.txt for ELOG project -project(ELOG) cmake_minimum_required(VERSION 3.0) +project(ELOG) # compile options option(USE_SSL "Use OpenSSL library for https" ON)