smatter
smatter

Reputation: 29168

Running eclipse with command line arguments

Is there some way by which I can configure eclipse to run a program with certain command line arguments for debugging.

Upvotes: 6

Views: 5300

Answers (1)

zengr
zengr

Reputation: 38899

You need to configure the command line arguments for Eclipse: Under Run configurations>Arguments

Read here

Also consider using Ant as a build script. Works better in the long run.

Upvotes: 7

Related Questions