mirror of
https://github.com/reactos/CMake.git
synced 2025-02-21 12:20:48 +00:00
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.
This commit is contained in:
parent
484958b781
commit
3d13492eac
@ -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})
|
||||
|
Loading…
x
Reference in New Issue
Block a user