I\'ve added several directories, libraries such as matlab, opencv, etc to compile my current C file in Visual Studio project.
All my upcoming projects will require t
I am using AtmelStudio 6.1, which is built on Visual Studio 2010 (I believe), and yet doesn't have any Property Manager that I can find. So, the hackish system I use is:
look for the configuration data you want. Configurations are inside of PropertyGroup tags; for example, in my case it looks like
for the configuration named "Preprocess only". Copy from the beginning of that tag until the end of the corresponding
tag.
Paste the block into the destination .cproj, just after other
tag. Make sure that the name of the configuration is unique in this file. Save.
You're finished. Now open the project normally in VS and you'll be able to select the added configuration.