diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-03-10 02:09:04 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-03-10 02:09:04 +0900 |
commit | ca94d77e4544862e4c43cfddde69050bdc08fd35 (patch) | |
tree | 1ab14ed39b550c889f9e946d0839b9e7aa7ffa58 /CMakeLists.txt | |
parent | 34a0e0c8911dc1c556c51737428a9824aee11a94 (diff) |
fix typo
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f6ab756..19e50b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ endif() option(BUILD_STATIC OFF) # Build mscp with -static LD flag if (BUILD_STATIC) - message(STATUS "Build mscp with -static LD optiong") + message(STATUS "Build mscp with -static LD option") if (NOT BUILD_CONAN) message(WARNING "BUILD_STATIC strongly recommended with BUILD_CONAN option") @@ -38,7 +38,7 @@ set(WITH_EXAMPLES OFF) set(BUILD_STATIC_LIB ON) if(BUILD_CONAN) message(STATUS - "Disable libssh GSSAPI support beucase libkrb5 doesn't exist on conan") + "Disable libssh GSSAPI support because libkrb5 doesn't exist in conan") set(WITH_GSSAPI OFF) endif() add_subdirectory(libssh EXCLUDE_FROM_ALL) |