Daniel Paczuski Bak
Daniel Paczuski Bak

Reputation: 4088

Atmel Studio 7 command line build - define symbols on command line

I am using the following command to build an atmel studio project on the command line:

AtmelStudio.exe C:\blahblah\solution.atsln /rebuild DEBUG /project PROJNAME /out output.txt

I would like to define symbols and override the values defined in the project's .cproj file, so that I do not need to define many different configurations. Is this possible, or do I need to use some other tool?

Upvotes: 0

Views: 1150

Answers (1)

DanD
DanD

Reputation: 11

You need to use "/projectconfig". /projectconfig Specifies the project configuration to build or deploy. Must be used with /project

Upvotes: 1

Related Questions