mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-14 00:39:59 +00:00
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)
|