From 7db422b327f1b1e73dd1365fc73d5881b10eeab2 Mon Sep 17 00:00:00 2001 From: Chiel ten Brinke Date: Wed, 14 Dec 2016 15:19:22 +0100 Subject: [PATCH] Fix flex build command in cgraph project. --- .gitattributes | 6 ++++++ .gitignore | 3 ++- lib/cgraph/cgraph.vcxproj | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..0194a9fbf --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# # Set the default behavior, in case people don't have core.autocrlf set. +* text=auto + +# Declare files that will always have CRLF line endings on checkout. +*.sln text eol=crlf +*.vcxproj text eol=crlf diff --git a/.gitignore b/.gitignore index 7061df0bc..a93fdb273 100644 --- a/.gitignore +++ b/.gitignore @@ -206,11 +206,12 @@ tests/**/difference/** ## Binaries tests/unit_tests/lib/common/command_line -# Folders generated by Visual Studio builds +# Folders and files generated by Visual Studio builds **/Debug/** **/Release/** *.lib *.pdb +graphviz.sdf # User specific Visual Studio folders and files .vs/** diff --git a/lib/cgraph/cgraph.vcxproj b/lib/cgraph/cgraph.vcxproj index 427fa7fff..0da804138 100644 --- a/lib/cgraph/cgraph.vcxproj +++ b/lib/cgraph/cgraph.vcxproj @@ -72,7 +72,7 @@ bison -dy grammar.y -o grammar.c -flex -o scan.c scan.l +flex -oscan.c scan.l -- 2.40.0