peytonk132 / FortIDE

This is a simple Fortran-deidcated IDE im making. This is the Reddit post kind of describing the things I want to do and a run down of who I am: https://www.reddit.com/r/AskProgramming/comments/1c0bat6/making_a_simple_ide_for_fortran
Other
6 stars 2 forks source link

MSB8027 Two or more files with the name of Parser.cpp will produce outputs to the same location. This can lead to an incorrect build result. The files involved are mainfunc\antlr-runtime\Parser.cpp, mainfunc\searchParser\Parser.cpp #7

Closed kaby76 closed 1 month ago

kaby76 commented 2 months ago

This is a warning from the compiler. You will likely need to rename your Parser.* files, not the Antlr4 runtime. This, again, is why the Antlr4 runtime should have been in a completely separate project.

peytonk132 commented 2 months ago

Yeah, I had run into that previously. I had simply changed the Parser.cpp and Parser.h files in the searchParser folder to s_Parser.* and changed the include in s_Parser.cpp.