diff options
| author | yangwei <[email protected]> | 2024-11-27 19:50:50 +0800 |
|---|---|---|
| committer | yangwei <[email protected]> | 2024-11-27 19:50:50 +0800 |
| commit | 35f3ec6e73b7996049c00bd410377cdcbfbd6ebe (patch) | |
| tree | 97ef369502bf742f5653dd0f9dfafa31fede8eef /deps | |
| parent | 405a62826e02a41af3350d976d4852377e03434c (diff) | |
🔧 build(fix aarch64 warning): ignore compile warning
Diffstat (limited to 'deps')
| -rw-r--r-- | deps/linenoise/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/linenoise/CMakeLists.txt b/deps/linenoise/CMakeLists.txt index b0cad66..7ae3d03 100644 --- a/deps/linenoise/CMakeLists.txt +++ b/deps/linenoise/CMakeLists.txt @@ -1,2 +1,4 @@ add_library(linenoise STATIC linenoise.c) -target_include_directories(linenoise PUBLIC ${CMAKE_CURRENT_LIST_DIR})
\ No newline at end of file +target_include_directories(linenoise PUBLIC ${CMAKE_CURRENT_LIST_DIR}) + +target_compile_options(linenoise PRIVATE -Wno-error=type-limits)
\ No newline at end of file |
