Eclipse adding your own build command

后端 未结 4 2006
别那么骄傲
别那么骄傲 2020-12-13 19:24

I am new to eclipse and wanted to do the following:

  1. Use my custom build commands with eclipse. Until now I only saw make all. I use a shell script
相关标签:
4条回答
  • 2020-12-13 19:36

    If you want to add other your own commands then the easiest way is to write Ant file for your project so by clicking once you can execute all your commands.To see how to write Ant file click here

    0 讨论(0)
  • 2020-12-13 19:42

    You can add a custom builder in the "Builders" category of the project properties.

    project->properties->builders->new

    there you can also deactivate the default eclipse builders..

    hope that helped

    0 讨论(0)
  • 2020-12-13 19:45

    I was able to do something similar to have protoc run on my .proto files. I did it by adding a "Make Target" to the project.

    0 讨论(0)
  • 2020-12-13 19:56

    In addition to what smeg4brains said and assuming that you are using the CDT plugin you can go to:

    project -> properties -> C/C++ Build

    Uncheck Use default build command on the Builder Settings tab and replace make with e.g. scons.

    On the Behaviour tab you can then specify the target to call for the Build and Clean phase.

    To resolve your second issue open the Project menu and uncheck Build automatically. This will prevent Eclipse from building the project when it thinks it is necessary.

    0 讨论(0)
提交回复
热议问题