aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-10 05:51:08 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-10 05:51:08 +0000
commit286a613ef9da9f3ea549190fc17275a4426070e9 (patch)
tree2f8785cd83fc98edbbf41b561bd0ae95d90e45aa /cmake/modules
parentccf5feb4d754138aefc4c9bec5cfd892604cc1d0 (diff)
Add tools/lemon/CMakeLists.txt which creates the lemon parser executable
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30461 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'cmake/modules')
-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)
-