Dhinesh
Dhinesh

Reputation: 105

How to run batch file in coverity

I am new to coverity and i am using .bat file for building. Is there any way to build .bat file through coverity buil(cov-build) command in command line.

thanks in advance.

Upvotes: 0

Views: 947

Answers (1)

Mark Robinson
Mark Robinson

Reputation: 3155

In your case,

Alter your bat file such that it wraps cov-build around make

build.bat

cov-build make {YOUR_OPTIONS}

Upvotes: 1

Related Questions