Helix QAC++ project creation by cli - static-analysis

it is possible to create a project Helix QAC++ by qacli?
now, i create an empty project by QAC++ GUI and then i use qacli sync in order to syncronize and populate the project with all the cpp file. is there an alternative way to do this?

Related

How to combine two projects into one project?

I want to add an existing project in my existing developed project. I have tried drag those project in my developed project and set the header and other linker flag. I have access only forward declaration using this but I want access imprort "subprojectcontroller.h" but i didn't access those file. Can you please provide proper steps.
second project does not have static library.
Thanks
Kiran

Add Helper Classes to Project By Default

Is there a way to have visual studio add my helper classes (preferably with the correct namespace) anytime I create a new project. For example all of the extension methods, conversions etc. Its a pain to add them every time I start a new project.
Thanks
I'm in VS2012
There are 2 ways:
create a project template
create a set of library
My preferred way is to create a set of library I reuse in all of my project.
I dividet it with different scope for different kind of projects:
MyLib.Core, MyLib.Web, MyLib.Winforms, MyLib.Nhibernate etc etc
I distribute them with nuget so I can easily handle update and versioning

I need some advice with creating custom component QML libraries

I have written some QML components which I would like to reuse in many projects.
Currently, what I do, is create the components using QtCreator (test it, etc).
If I want to use these component from several applications (using VS2010) what I do is to embed them in a QRC file. But I need to copy every QML needed file for each new VS2010 solution/project ... I would like to distribute them as plugins or libraries and not having to create new QRCs, etc.
What should I do?
One options is to create a QML Extension plugin: http://doc.qt.io/qt-5/qqmlextensionplugin.html

Add files as read-only to project?

I have the following problem: I need to create a VS project (database project) and I want to make it deployable. To do that I need to add a single SQL function, which belongs to a pool of global functions, to the project. If I now deploy the project, I have all the files that I need.
Problem: I don't want anyone to change the global function inside of my project, so I would like to set it to readonly (not the file itself on the filesystem, it's checked in tfs anyway), so that the file can be deployed, but no one can change it inside the project (at least not by accident).
Is it possible to add a file as read-only to a VS2010 project?

Visual Studio - How to use an existing vsproj's project settings as a template for new project?

There is some software I want to write a plugin for. The software includes some sample plugins. I want to create a new fresh project but I want to use one of the sample plugin vsproj's project settings as a template.
It doesn't seem very clear on how to do this. If I do "New Project From Existing Code" that only imports the cpp, h, etc files into the new project.
Right now the only way I can see to copy a sample projects settings is to open two instances of VS2005 next to each other and simply mimic the settings... Surely there is a built in method of doing this?
You could copy the project file and remove all the source files from it.
Then add your new source to that.
Doesn't the software provide a template? When I worked on toolkit that allowed developers to write their own plugins we provided these.

Resources