From fd52cbe044a2da184f2f7b562b4d77917e20fb07 Mon Sep 17 00:00:00 2001 From: David Sisson Date: Mon, 21 Aug 2023 18:29:02 -0700 Subject: [PATCH] chore: Update antlr4 to version 4.13.0. --- src/substrait/textplan/parser/grammar/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/substrait/textplan/parser/grammar/CMakeLists.txt b/src/substrait/textplan/parser/grammar/CMakeLists.txt index 02430e0c..a5bc5c67 100644 --- a/src/substrait/textplan/parser/grammar/CMakeLists.txt +++ b/src/substrait/textplan/parser/grammar/CMakeLists.txt @@ -11,15 +11,15 @@ set(GRAMMAR_DIR ${CMAKE_BINARY_DIR}/src/substrait/textplan/parser/grammar) # using /MD flag for antlr4_runtime (for Visual C++ compilers only) set(ANTLR4_WITH_STATIC_CRT OFF) -set(ANTLR4_TAG 4.12.0) +set(ANTLR4_TAG 4.13.0) set(ANTLR4_ZIP_REPOSITORY - https://github.com/antlr/antlr4/archive/refs/tags/4.12.0.zip) + https://github.com/antlr/antlr4/archive/refs/tags/4.13.0.zip) include(ExternalAntlr4Cpp) include_directories(${ANTLR4_INCLUDE_DIRS}) -file(DOWNLOAD https://www.antlr.org/download/antlr-4.12.0-complete.jar +file(DOWNLOAD https://www.antlr.org/download/antlr-4.13.0-complete.jar "${GRAMMAR_DIR}/antlr.jar") set(ANTLR_EXECUTABLE "${GRAMMAR_DIR}/antlr.jar") find_package(ANTLR REQUIRED)