From 3003323a6cd72542471255594d645610beeca9e3 Mon Sep 17 00:00:00 2001 From: deniskovalchuk Date: Sat, 16 Sep 2023 23:34:45 +0300 Subject: [PATCH] Clarify project names --- CMakeLists.txt | 2 +- example/CMakeLists.txt | 2 +- test/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1333db4..2e40b6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.14) -project(ftp +project(libftp VERSION 0.0.1 DESCRIPTION "FTP client library" LANGUAGES CXX) diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index f7f166f..31a1940 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.14) -project(ftp-examples LANGUAGES CXX) +project(libftp-examples LANGUAGES CXX) function(create_example name) add_executable(${name} diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 173eee6..27a796c 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.14) -project(ftp-tests) +project(libftp-tests) find_package(Boost 1.67.0 COMPONENTS filesystem REQUIRED)