feat: fetch problem by pwsh script.

Remove old C++ fetcher.
This commit is contained in:
2026-03-11 22:31:31 +08:00
parent b3dba32504
commit 9333e5e144
16 changed files with 367 additions and 837 deletions

View File

@@ -4,14 +4,6 @@ project(leetcode-cpp)
set(CMAKE_CXX_STANDARD 20)
include_directories(include)
find_package(CURL REQUIRED)
find_package(nlohmann_json REQUIRED)
find_package(GTest REQUIRED)
add_subdirectory(src)
add_executable(leetcode-fetcher main.cpp
src/fetcher.cpp)
target_link_libraries(leetcode-fetcher PRIVATE CURL::libcurl)
target_link_libraries(leetcode-fetcher PRIVATE nlohmann_json::nlohmann_json)