Skip to content

Commit 3e3e391

Browse files
committed
Changed warning to Status for chsarp bindings
1 parent 3badb36 commit 3e3e391

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Example_CSharp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ execute_process(COMMAND dotnet --version
88
OUTPUT_QUIET
99
ERROR_QUIET)
1010
if(result)
11-
message(WARNING "CMake failed: dotnet executable not found but by this build. You must install dotnet to generate csharp bindings")
11+
message(STATUS "dotnet executable not found but by this build, if you want to build CSharp Bindings, you must install dotnet")
1212
else()
1313
set(PLATFORM x64)
1414
if(NOT DEFINED CMAKE_GENERATOR_PLATFORM)

src_csharp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ execute_process(COMMAND dotnet --version
88
OUTPUT_QUIET
99
ERROR_QUIET)
1010
if(result)
11-
message(WARNING "CMake failed: dotnet executable not found but by this build. You must install dotnet to generate csharp bindings")
11+
message(STATUS "dotnet executable not found but by this build, if you want to build CSharp Bindings, you must install dotnet")
1212
else()
1313
set(PLATFORM x64)
1414
if(NOT DEFINED CMAKE_GENERATOR_PLATFORM)

0 commit comments

Comments
 (0)