From 599094c8e4b432008f09892043abe7034ff18a3a Mon Sep 17 00:00:00 2001 From: Green Sky Date: Tue, 28 May 2024 17:31:36 +0200 Subject: [PATCH] update imgui to v1.90.7 --- external/CMakeLists.txt | 2 +- plugins/CMakeLists.txt | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 7dec40b..a2bea17 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -6,7 +6,7 @@ if (NOT TARGET imgui) message("II using FetchContent imgui") FetchContent_Declare(imgui GIT_REPOSITORY https://github.com/ocornut/imgui.git - GIT_TAG 6ccc561 # v1.90.6 + GIT_TAG 00ad3c6 # v1.90.7 EXCLUDE_FROM_ALL ) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 097679e..912bbfb 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -1,12 +1,11 @@ cmake_minimum_required(VERSION 3.24 FATAL_ERROR) -add_library(plugin_toxic_games SHARED +add_library(plugin_toxic_games MODULE ./plugin_toxic_games.cpp ) set_target_properties(plugin_toxic_games PROPERTIES C_VISIBILITY_PRESET hidden - POSITION_INDEPENDENT_CODE ON ) target_compile_definitions(plugin_toxic_games PUBLIC ENTT_API_IMPORT)