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")