From a360e5117d6b500caea608d54209f68ca2bc2880 Mon Sep 17 00:00:00 2001 From: pumpkinpal Date: Fri, 15 May 2020 11:39:26 +1000 Subject: [PATCH] Moved project() below cmake_minimum_version() and specified version and languages used. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e890ed846..aec5eb993 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -project (imgui) cmake_minimum_required (VERSION 3.2) +project(imgui VERSION 1.73.0 LANGUAGES CXX C) option (IMGUI_EXAMPLES "Build ImGui examples" ON) option (IMGUI_DEMO "Include the ImGui demo window implementation in library" ON)