This repository has been archived on 2025-09-14 . You can view files and clone it, but cannot push or open issues or pull requests.
Files
0e5651f353b99302dd3571ef9dcebbffe52056df
6 lines
229 B
CMake
6 lines
229 B
CMake
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
|
|||
project(http-client-lite-examples)
|
|||
|
|||
add_executable(${PROJECT_NAME}_simple_request simple_request.cpp)
|
|||
target_link_libraries(${PROJECT_NAME}_simple_request PRIVATE http_client_lite)
|