Skip to content

Commit b451224

Browse files
committed
Updated Conan Package to Just 'Conan' for Get<lib>.cmake messages
Verified I can build MiNiFi with conan build and standalone cmake. Verified I can create MiNIFi conan package with conan create.
1 parent b620b53 commit b451224

11 files changed

+11
-11
lines changed

cmake/GetBZip2.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_bzip2 SOURCE_DIR BINARY_DIR)
1919
if(MINIFI_BZIP2_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install bzip2")
20+
message("Using Conan to install bzip2")
2121
find_package(BZip2 REQUIRED)
2222
elseif(MINIFI_BZIP2_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build bzip2 from source")

cmake/GetCatch2.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_catch2)
1919
if(MINIFI_CATCH2_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install Catch2")
20+
message("Using Conan to install Catch2")
2121
find_package(Catch2 REQUIRED)
2222
add_library(Catch2WithMain ALIAS Catch2::Catch2WithMain)
2323
elseif(MINIFI_CATCH2_SOURCE STREQUAL "BUILD")

cmake/GetCivetWeb.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_civetweb)
1919
if(MINIFI_CIVETWEB_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install CivetWeb")
20+
message("Using Conan to install CivetWeb")
2121
find_package(civetweb REQUIRED)
2222
elseif(MINIFI_CIVETWEB_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build CivetWeb from source")

cmake/GetFmt.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_fmt)
1919
if(MINIFI_FMT_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install Fmt")
20+
message("Using Conan to install Fmt")
2121
find_package(fmt REQUIRED)
2222
elseif(MINIFI_FMT_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build Fmt from source")

cmake/GetLibCURL.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_curl SOURCE_DIR BINARY_DIR)
1919
if(MINIFI_LIBCURL_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install libcurl")
20+
message("Using Conan to install libcurl")
2121
find_package(CURL REQUIRED)
2222
elseif(MINIFI_LIBCURL_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build libcurl from source")

cmake/GetLibXml2.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_libxml2 SOURCE_DIR BINARY_DIR)
1919
if(MINIFI_LIBXML2_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install libxml2")
20+
message("Using Conan to install libxml2")
2121
find_package(libxml2 REQUIRED)
2222
elseif(MINIFI_LIBXML2_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build libxml2 from source")

cmake/GetOpenSSL.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_openssl SOURCE_DIR BINARY_DIR)
1919
if(MINIFI_OPENSSL_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install OpenSSL")
20+
message("Using Conan to install OpenSSL")
2121
find_package(OpenSSL REQUIRED)
2222
elseif(MINIFI_OPENSSL_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build OpenSSL from source")

cmake/GetRocksDB.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_rocksdb SOURCE_DIR BINARY_DIR)
1919
if(MINIFI_ROCKSDB_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install RocksDB")
20+
message("Using Conan to install RocksDB")
2121
find_package(RocksDB REQUIRED)
2222
add_library(RocksDB::RocksDB ALIAS RocksDB::rocksdb)
2323
elseif(MINIFI_ROCKSDB_SOURCE STREQUAL "BUILD")

cmake/GetSpdlog.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function(get_spdlog)
2020
get_fmt()
2121

2222
if(MINIFI_SPDLOG_SOURCE STREQUAL "CONAN")
23-
message("Using Conan Packager to install spdlog")
23+
message("Using Conan to install spdlog")
2424
find_package(spdlog REQUIRED)
2525

2626
add_library(spdlog ALIAS spdlog::spdlog)

cmake/GetZLIB.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
function(get_zlib SOURCE_DIR BINARY_DIR)
1919
if(MINIFI_ZLIB_SOURCE STREQUAL "CONAN")
20-
message("Using Conan Packager to install zlib")
20+
message("Using Conan to install zlib")
2121
find_package(ZLIB REQUIRED)
2222
elseif(MINIFI_ZLIB_SOURCE STREQUAL "BUILD")
2323
message("Using CMake to build zlib from source")

0 commit comments

Comments
 (0)