Pavlo Bazilnskyy
Pavlo Bazilnskyy

Reputation: 336

How to add run parameters to a C++ project in Netbeans

I am using Nebeans 7.0 and its C++ plugin and I want to do something like this: test.exe < in.txt > out.txt when I run the project. Where can I add these parameters to the project in Netbeans? Thanks in advance!

Upvotes: 3

Views: 5665

Answers (2)

jonsca
jonsca

Reputation: 10381

Under File, Project Properties, Run the first entry is Run Command. Click on the ellipsis to enter the additional information.

Dialog Box

Upvotes: 7

Mchl
Mchl

Reputation: 62387

I've no C++ project plugin installed at the moment, but in Java and PHP you need to right click on the project name in project manager, select 'Properties' and find 'Run Configuration' (or something similar) in Categories tree

Upvotes: 0

Related Questions