Configuring makefile tools #693
-
I'm trying to configure makefile-tools to utilize our makefile wrapper to generate our configuration to be used by the C/C++ extension. I'm running into a couple of issues I'm hoping someone here can help me resolve Generally, our application is comprised of many projects. Our makefiles require to be run in a "*.prj" directory. Here's a typical usage.
I have the following in my settings.json
This results in the following line in the Output window. This looks good except for two issues:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@jalanh11640 What do you see in the Makefile Tools project outline? I suspect that it's defaulting to the "all" target, and you could select the target you want there. As for a way to prevent the target from being used, I don't believe there is a way, you could create a new issue for this as a feature request. For question 2, there isn't a built-in way to accomplish this with the Makefile Tools extension. However, it's possible that you could create some tasks.json configurations to do this for you, but the Makefile Tools extension is designed to look at one project at a time. Thanks! |
Beta Was this translation helpful? Give feedback.
@jalanh11640 What do you see in the Makefile Tools project outline? I suspect that it's defaulting to the "all" target, and you could select the target you want there.
As for a way to prevent the target from being used, I don't believe there is a way, you could create a new issue for this as a feature request.
For question 2, there isn't a built-in way to accomplish this with the Makefile Tools extension. However, it's possible that you could create some tasks.json configurations to do this for you, but the Makefile Tools extension is designed to look at one project at a time.
Thanks!