Skip to content

Commit

Permalink
add @nlohmann json
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0werD committed Jan 13, 2024
1 parent 5c63df6 commit 901c795
Show file tree
Hide file tree
Showing 4 changed files with 24,790 additions and 5 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ include(${CMAKE_HOST_SYSTEM_NAME})

add_subdirectory("libs/cssdk")
add_subdirectory("libs/vhooks")
add_subdirectory("libs/json")
add_subdirectory("rezombie")
10 changes: 10 additions & 0 deletions libs/json/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.23)

set(PROJECT_NAME "json")
project(${PROJECT_NAME})

add_library(${PROJECT_NAME} INTERFACE)

target_include_directories(${PROJECT_NAME} INTERFACE "include")

target_sources(${PROJECT_NAME} INTERFACE "include/nlohmann/json.hpp")
Loading

0 comments on commit 901c795

Please sign in to comment.