Fix project name

pull/48/head
Federico Stazi 2020-09-10 09:13:46 +00:00
parent cf41ec4701
commit 9a4293a3cf
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
cmake_minimum_required(VERSION 3.16)
project(curl_sandbox)
project(libcurl_sandbox)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)

View File

@ -1,4 +1,4 @@
# Curl Sandbox
# LibCurl Sandbox
This library is a sandboxed version of curl's C API, [libcurl](https://curl.haxx.se/libcurl/c/), implemented using Sandboxed API.

View File

@ -1,6 +1,6 @@
# Curl Sandbox Examples
# LibCurl Sandbox Examples
Each example in this folder is the sandboxed version of a code snippet from [this page](https://curl.haxx.se/libcurl/c/example.html) on curl's website. These examples perform some basic tasks using libcurl, and can be useful both to understand how to use Curl Sandboxed, but also to get an idea of how regular and sandboxed code compare to each other.
Each example in this folder is the sandboxed version of a code snippet from [this page](https://curl.haxx.se/libcurl/c/example.html) on curl's website. These examples perform some basic tasks using libcurl, and can be useful both to understand how to use LibCurl Sandbox, but also to get an idea of how regular and sandboxed code compare to each other.
This is the list of the examples: