I get the following error when I try to build my project using Keil uVision4.
Configuration\RTX_Config.c(15): error: #5: cannot open source input file "tasks.h": No such file or directory
In my project I have group named "Configuration". In this group, there are some 'c++' files. I think in order to fix this compile error, I need to add "tasks.h" header file to RTX_Config.c. I added it to "Configuration" group but was unable to drag and drop ito to RTX_Config.c.
How do I drag and drop this header file to "RTX_config.c" in the Keil project?
I think in order to fix this compile error, I need to add "tasks.h" header file to RTX_Config.c.
That thought is incorrect. What you need to do is allow the compiler to find that file. Read up about include path specifications in your compiler manual.
Once the compiler has found that include file, uVision will display it by itself.