Skip to content

Commit 1fdf2e5

Browse files
authored
Remove comma in cmake argument list (#954)
Addressing warning: ``` CMake Warning (dev) at onnxruntime_extensions-src/CMakeLists.txt:447: Syntax Warning in cmake code at column 90 Argument not separated from preceding token by whitespace. ```
1 parent 5e991fb commit 1fdf2e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ set(_HAS_TOKENIZER OFF)
444444
if(OCOS_ENABLE_GPT2_TOKENIZER)
445445
# GPT2
446446
set(_HAS_TOKENIZER ON)
447-
file(GLOB tok_TARGET_SRC "operators/tokenizer/bpe_*.*" "operators/tokenizer/unicode*.*", "operators/tokenizer/case_*.*")
447+
file(GLOB tok_TARGET_SRC "operators/tokenizer/bpe_*.*" "operators/tokenizer/unicode*.*" "operators/tokenizer/case_*.*")
448448
list(APPEND TARGET_SRC ${tok_TARGET_SRC})
449449
endif()
450450

@@ -974,4 +974,4 @@ if(OCOS_USE_WINRT)
974974
set(CMAKE_CXX_STANDARD 20)
975975
include(cmake/winrt.cmake)
976976
enable_cppwinrt(ortcustomops)
977-
endif()
977+
endif()

0 commit comments

Comments
 (0)