Replies: 1 comment
-
Discussion was converted to issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my project,one script will put multi cpp files into a big cpp file, then compile the big one。However this will leads the cpp Intellisense not working. In addtional, i really don‘t want to modify the cpp files, because there are so many, but if they compiled standalone, they just cannot be compiled. for example, a.cpp with include 'a.h' code and b.cpp, which also need the include code but not, now the script will put them into a new cpp file named c.cpp, then the compiler will just compile c.pp. Everything work fine, (because the a.cpp has the include code). However, if just compile the b.cpp standalone, we will get one compile error. Is there a viable solution? thx
Beta Was this translation helpful? Give feedback.
All reactions