Skip to content

Commit fffce76

Browse files
authored
fix: Correct configure message for executable
The log message indicating to build the C++ executable is corrected. It referred to the library by mistake.
1 parent 2584a4d commit fffce76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ option(BUILD_CXX "Build C++ library" ON)
7373
message(STATUS "Build C++ library: ${BUILD_CXX}")
7474

7575
option(BUILD_CXX_EXE "Build C++ executable" ON)
76-
message(STATUS "Build C++ library: ${BUILD_CXX_EXE}")
76+
message(STATUS "Build C++ executable: ${BUILD_CXX_EXE}")
7777

7878
option(BUILD_TESTING "Build Tests" ON)
7979

0 commit comments

Comments
 (0)