diff options
author | albert-github <albert.tests@gmail.com> | 2019-09-17 06:43:07 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-09-17 06:43:07 (GMT) |
commit | 488dac9a9ca0b50759fa06770551b7095e7c2c6d (patch) | |
tree | 6159eb1a187af93daca2337856d3fa812c6833be | |
parent | 21a07f02210364e270caa8b66852b0816bff2a5b (diff) | |
download | Doxygen-488dac9a9ca0b50759fa06770551b7095e7c2c6d.zip Doxygen-488dac9a9ca0b50759fa06770551b7095e7c2c6d.tar.gz Doxygen-488dac9a9ca0b50759fa06770551b7095e7c2c6d.tar.bz2 |
issue #7268 Unable to build "master" branch
Missing configimpl.l.h:
- added dependency for doxycfg
problems with tabs"
- replaced tabs by spaces
-rw-r--r-- | src/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/scan_states.py | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7e54b2b..27c1687 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -140,6 +140,7 @@ add_library(doxycfg STATIC ${GENERATED_SRC}/lang_cfg.h ${GENERATED_SRC}/configvalues.h ${GENERATED_SRC}/configimpl.cpp + ${GENERATED_SRC}/configimpl.l.h ${GENERATED_SRC}/configoptions.cpp ${GENERATED_SRC}/configvalues.cpp portable.cpp diff --git a/src/scan_states.py b/src/scan_states.py index e156b97..e3924e0 100644 --- a/src/scan_states.py +++ b/src/scan_states.py @@ -19,7 +19,7 @@ import re def main(): if len(sys.argv)!=2: - sys.exit('Usage: %s <lex_file>' % sys.argv[0]) + sys.exit('Usage: %s <lex_file>' % sys.argv[0]) lex_file = sys.argv[1] if (os.path.exists(lex_file)): @@ -46,4 +46,4 @@ def main(): print("}") if __name__ == '__main__': - main() + main() |