From 5de88600e5a333eb803fbd61142aa1b3abb357b0 Mon Sep 17 00:00:00 2001 From: Chukobyte Date: Wed, 27 Mar 2024 23:02:41 -0400 Subject: [PATCH] Removing unused cJSON dependency. --- Dependencies.cmake | 10 ---------- README.md | 2 -- 2 files changed, 12 deletions(-) diff --git a/Dependencies.cmake b/Dependencies.cmake index 3aaa1b2..6d91feb 100644 --- a/Dependencies.cmake +++ b/Dependencies.cmake @@ -32,16 +32,6 @@ if (NOT TARGET cglm) FetchContent_MakeAvailable(cglm_content) endif() -# https://github.com/DaveGamble/cJSON -if (NOT TARGET cjson) - FetchContent_Declare( - cjson_content - GIT_REPOSITORY https://github.com/DaveGamble/cJSON.git - GIT_TAG v1.7.17 - ) - FetchContent_MakeAvailable(cglm_content) -endif() - # https://github.com/kuba--/zip if (NOT TARGET kuba_zip) include(FetchContent) diff --git a/README.md b/README.md index 40608ec..735c4de 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ A framework for windows, macOS, and linux that can be used to make games. - [unity](https://github.com/ThrowTheSwitch/Unity) - Unit Tests - [zip](https://github.com/kuba--/zip) - Reading archives - [stb image](https://github.com/nothings/stb) - Image loading -- [cJson](https://github.com/DaveGamble/cJSON) - Reading json files ## Current Features @@ -28,7 +27,6 @@ A framework for windows, macOS, and linux that can be used to make games. - [x] Audio - [x] Networking (udp only for now) - [x] pthread wrapper and thread pool -- [x] Math Library - [x] ECS - [x] Multiple data structures such as hashmap and array list (vector)