From 9e7ee4945f7a7e3bb150b83563c470e85900cba2 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 13 Aug 2023 22:20:06 -0400 Subject: [PATCH] Small tweak to default antlr jar installation paths --- cmake/modules/FindANTLR.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/FindANTLR.cmake b/cmake/modules/FindANTLR.cmake index 3fa497e8d4..8686c9fe15 100644 --- a/cmake/modules/FindANTLR.cmake +++ b/cmake/modules/FindANTLR.cmake @@ -13,7 +13,7 @@ find_package(Java QUIET COMPONENTS Runtime) if(NOT ANTLR_JAR_LOCATION) find_file(ANTLR_JAR_LOCATION NAMES antlr-4.12.0-complete.jar antlr.jar antlr4.jar antlr-4.jar - HINTS /usr /usr/local /usr/local/lib/ /usr/share /usr/share/java /usr/local/Homebrew ~/homebrew /usr/local/homebrew/Cellar /opt/homebrew/Cellar + HINTS /usr /usr/local /usr/local/share /usr/local/share/java /usr/local/lib/ /usr/share /usr/share/java /usr/local/Homebrew ~/homebrew /usr/local/homebrew/Cellar /opt/homebrew/Cellar PATH_SUFFIXES antlr 4.12.0 antlr/4.12.0 NO_CMAKE_SYSTEM_PATH NO_SYSTEM_ENVIRONMENT_PATH)