From 92a66f554e023ff4fa440f5664b5e64dd8e9dbf9 Mon Sep 17 00:00:00 2001 From: sillysagiri Date: Thu, 21 Nov 2024 09:52:36 +0700 Subject: [PATCH] remove inifile-cpp --- CMakeLists.txt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf4b77a..cba7c05 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,10 +29,6 @@ if(NOT RLIMGUI_LINK) set(RLIMGUI_LINK "https://github.com/raylib-extras/rlImGui/archive/refs/heads/main.zip") endif() -if(NOT INIFILE_LINK) - set(INIFILE_LINK "https://github.com/Rookfighter/inifile-cpp/archive/refs/heads/master.zip") -endif() - ############################################################## include(FetchContent) @@ -45,10 +41,6 @@ message(STATUS "Downloading raylib extra library") FetchContent_Declare(raylib-extra URL ${RAYLIB_EXTRA_LINK}) FetchContent_MakeAvailable(raylib-extra) -message(STATUS "Downloading inifile-cpp library") -FetchContent_Declare(inifile-cpp URL ${INIFILE_LINK}) -FetchContent_MakeAvailable(inifile-cpp) - ############################################################## # yes... im using glob... dont judge me.... file(GLOB_RECURSE PROJECT_SOURCES CONFIGURE_DEPENDS "src/*.cpp")