Skip to content

Commit

Permalink
Changed warning to Status for chsarp bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
smasherprog committed Nov 26, 2021
1 parent 3badb36 commit 3e3e391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Example_CSharp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ execute_process(COMMAND dotnet --version
OUTPUT_QUIET
ERROR_QUIET)
if(result)
message(WARNING "CMake failed: dotnet executable not found but by this build. You must install dotnet to generate csharp bindings")
message(STATUS "dotnet executable not found but by this build, if you want to build CSharp Bindings, you must install dotnet")
else()
set(PLATFORM x64)
if(NOT DEFINED CMAKE_GENERATOR_PLATFORM)
Expand Down
2 changes: 1 addition & 1 deletion src_csharp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ execute_process(COMMAND dotnet --version
OUTPUT_QUIET
ERROR_QUIET)
if(result)
message(WARNING "CMake failed: dotnet executable not found but by this build. You must install dotnet to generate csharp bindings")
message(STATUS "dotnet executable not found but by this build, if you want to build CSharp Bindings, you must install dotnet")
else()
set(PLATFORM x64)
if(NOT DEFINED CMAKE_GENERATOR_PLATFORM)
Expand Down

0 comments on commit 3e3e391

Please sign in to comment.