Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Throw some quotes around strings in CMakeLists.txt ...
  • Loading branch information
icculus committed Feb 28, 2009
1 parent 4fd93c9 commit de518c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -64,10 +64,10 @@ IF(NOT RE2C)
ELSE(NOT RE2C)
MARK_AS_ADVANCED(RE2C)
ADD_CUSTOM_COMMAND(
OUTPUT mojoshader_lexer.c
OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.c"
DEPENDS mojoshader_lexer.re
COMMAND ${RE2C}
ARGS -is --no-generation-date -o ${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.c ${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.re
COMMAND "${RE2C}"
ARGS -is --no-generation-date -o "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.c" "${CMAKE_CURRENT_SOURCE_DIR}/mojoshader_lexer.re"
)
ENDIF(NOT RE2C)

Expand Down

0 comments on commit de518c4

Please sign in to comment.