I am using CMake to generate visual studio projects. Everything works fine except one thing.
The start up project in the solution is always "ALL_BUILD". How do I change the startup project to the real project I want via CMake?
|
I am using CMake to generate visual studio projects. Everything works fine except one thing. The start up project in the solution is always "ALL_BUILD". How do I change the startup project to the real project I want via CMake? |
|||
|
|
|
You can't. The startup-project is stored in a binary file, which is NOT generated by CMake. Without that binary file, visual studio will default to the first project in the solution file and the ALL_BUILD project is always first... |
|||
|
|
Since Visual 2005, the configuration is stored in a file name projectname.vc(x)proj.user, which is plain xml. I don't know about a way to change the startup project, but you certainly can set ALL_BUILD to run the desired executable instead of displaying the stupid popup :
This module is available on rpavlik's github. You simply need to add this in your topmost CMakeLists.txt :
Examples available here. |
|||
|
|