Skip to content
Snippets Groups Projects
Commit 3d13492e authored by Brad King's avatar Brad King
Browse files

FindFLEX: Fix FLEX_TARGET macro for special characters in path (#16072)

Use the VERBATIM option to add_custom_command so that the command is
escaped correctly.
parent 484958b7
No related branches found
No related tags found
No related merge requests found
......@@ -185,8 +185,8 @@ if(FLEX_EXECUTABLE)
endif()
add_custom_command(OUTPUT ${FLEX_TARGET_outputs}
COMMAND ${FLEX_EXECUTABLE}
ARGS ${FLEX_EXECUTABLE_opts} -o${Output} ${Input}
COMMAND ${FLEX_EXECUTABLE} ${FLEX_EXECUTABLE_opts} -o${Output} ${Input}
VERBATIM
DEPENDS ${Input}
COMMENT "[FLEX][${Name}] Building scanner with flex ${FLEX_VERSION}"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment