提交 f670e182 编写于 作者: F freemine

just warn user if flex is not installed under windows platform

上级 faec0c3a
...@@ -40,7 +40,9 @@ IF (TD_WINDOWS_64) ...@@ -40,7 +40,9 @@ IF (TD_WINDOWS_64)
endif () endif ()
find_package(FLEX) find_package(FLEX)
if(NOT FLEX_FOUND) if(NOT FLEX_FOUND)
message(FATAL_ERROR "you need to install flex first") message(WARNING "you need to install flex first\n"
"you may go to: https://github.com/lexxmark/winflexbison\n"
"or download from: https://github.com/lexxmark/winflexbison/releases")
else () else ()
ADD_SUBDIRECTORY(src) ADD_SUBDIRECTORY(src)
ADD_SUBDIRECTORY(tools) ADD_SUBDIRECTORY(tools)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册