Skip to content

Commit a9a73e0

Browse files
Apply suggestions from code review
Co-authored-by: kirkrodrigues <[email protected]>
1 parent 6cd8c8b commit a9a73e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ cmake_minimum_required(VERSION 3.23)
33
project(ystdlib VERSION "0.1.0" LANGUAGES CXX)
44

55
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
6-
include(ystdlib-helpers)
76
include(CMakePackageConfigHelpers)
87
include(GNUInstallDirs)
8+
include(ystdlib-helpers)
99

1010
option(BUILD_SHARED_LIBS "Build using shared libraries." OFF)
1111
option(ystdlib_BUILD_TESTING "Build the testing tree for ystdlib." ON)
@@ -44,12 +44,12 @@ set(ystdlib_LIBRARIES
4444
"io_interface"
4545
"wrapped_facade_headers"
4646
CACHE STRING
47-
"Semi-colon separated list of libraries to be built."
47+
"Semicolon-separated list of libraries to be built."
4848
)
4949

5050
message(STATUS "Building the following libraries:")
5151
foreach(LIB IN LISTS ystdlib_LIBRARIES)
52-
message(" - ${LIB}")
52+
message(STATUS " - ${LIB}")
5353
endforeach()
5454

5555
if(ystdlib_IS_TOP_LEVEL)

0 commit comments

Comments
 (0)