aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules/UseLemon.cmake
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-10 05:51:08 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-10 05:51:08 +0000
commitee95203649cee2bd608142ef8907a05b0c178269 (patch)
tree2f8785cd83fc98edbbf41b561bd0ae95d90e45aa /cmake/modules/UseLemon.cmake
parent142131917c85e823d28a707e0f86e2f945f86769 (diff)
Add tools/lemon/CMakeLists.txt which creates the lemon parser executable
svn path=/trunk/; revision=30461
Diffstat (limited to 'cmake/modules/UseLemon.cmake')
-rw-r--r--cmake/modules/UseLemon.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/UseLemon.cmake b/cmake/modules/UseLemon.cmake
index ecdf7f132e..afdf2ef0bf 100644
--- a/cmake/modules/UseLemon.cmake
+++ b/cmake/modules/UseLemon.cmake
@@ -10,7 +10,8 @@ MACRO(ADD_LEMON_FILES _sources )
SET(_out ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.c)
ADD_CUSTOM_COMMAND(
- OUTPUT ${_out}
+ OUTPUT
+ ${_out}
COMMAND lemon
t=${_lemonpardir}/lempar.c
${srcdir}/${_in}
@@ -20,4 +21,3 @@ MACRO(ADD_LEMON_FILES _sources )
SET(${_sources} ${${_sources}} ${_out} )
ENDFOREACH (_current_FILE)
ENDMACRO(ADD_LEMON_FILES)
-