Skip to content

Commit

Permalink
Merge pull request #1495 from cntpro/master
Browse files Browse the repository at this point in the history
增加在nmake下对源文件utf-8编码的支持,解决在msvc编译错误问题
  • Loading branch information
guanzhi authored Oct 11, 2023
2 parents 9fddcc5 + 6f8db2f commit 435f937
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,10 @@ if (CMAKE_C_COMPILER_ID MATCHES "MSVC")
set(CMAKE_INSTALL_PREFIX "C:/Program Files/GmSSL") # change by `cmake -DCMAKE_INSTALL_PREFIX=C:\path\to\install`
# run `set path=%path%;C:\Program Files\GmSSL\bin`
add_compile_definitions(_CRT_SECURE_NO_WARNINGS)

target_compile_options(gmssl PRIVATE /utf-8)
target_compile_options(gmssl-bin PRIVATE /utf-8)

# target_compile_options(gmssl PRIVATE /wd4996)
# target_compile_options(gmssl-bin PRIVATE /wd4996)
endif()
Expand Down

0 comments on commit 435f937

Please sign in to comment.