Skip to content
Snippets Groups Projects
Commit d8f89ce7 authored by Adam Wardyński's avatar Adam Wardyński
Browse files

Do not link antlr lib on linux. Need to investigate error and why does it look...

Do not link antlr lib on linux. Need to investigate error and why does it look like working without the linkage. It's still needed for win tho.
parent b90c48d6
Branches
No related merge requests found
......@@ -19,7 +19,11 @@ set(LIBS ${LIBS} ${ICU_LIBRARIES} ${ICU_I18N_LIBRARIES})
find_package(ANTLR REQUIRED)
include_directories(${ANTLR_INCLUDE_DIR})
set(LIBS ${LIBS} ${ANTLR_LIBRARY})
if(WIN32)
# TODO: there is some error when trying to link the lib on linux
set(LIBS ${LIBS} ${ANTLR_LIBRARY})
endif(WIN32)
SET(libwccl_STAT_SRC
exception.cpp
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment