diff options
author | Timothy Pearson <[email protected]> | 2011-11-27 22:50:47 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-07-29 19:24:38 +0200 |
commit | b163211001db812c1e19afa9fa89cbc251132221 (patch) | |
tree | 2cbe2037acbcc53b955e51070d2e8a01844c36cd /BisonMacros.cmake | |
parent | 2016ba9b1ccbef2178c87f7694ccbcd00b492a67 (diff) | |
download | abakus-b163211001db812c1e19afa9fa89cbc251132221.tar.gz abakus-b163211001db812c1e19afa9fa89cbc251132221.zip |
Fix FTBFS
(cherry picked from commit 2c82d91b8c5ac4b7b5813a8c09b130e12180974c)
Diffstat (limited to 'BisonMacros.cmake')
-rw-r--r-- | BisonMacros.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BisonMacros.cmake b/BisonMacros.cmake index d6dcb19..b509e88 100644 --- a/BisonMacros.cmake +++ b/BisonMacros.cmake @@ -82,8 +82,8 @@ MACRO(GENERATE_BISON_FLEX_SOURCES parser parser_args lexer lexer_args) GET_FILENAME_COMPONENT(parser_base "${parser}" NAME_WE) - SET(BISON_TAB_C "${CMAKE_CURRENT_BINARY_DIR}/${parser_base}.tab.c") - SET(BISON_TAB_H "${CMAKE_CURRENT_BINARY_DIR}/${parser_base}.tab.h") + SET(BISON_TAB_C "${CMAKE_CURRENT_BINARY_DIR}/${parser_base}.tab.cc") + SET(BISON_TAB_H "${CMAKE_CURRENT_BINARY_DIR}/${parser_base}.tab.hh") SET(BISON_CC "${CMAKE_CURRENT_BINARY_DIR}/${parser_base}.cc") SET(BISON_H "${CMAKE_CURRENT_BINARY_DIR}/${parser_base}.h") |