vote up 0 vote down star
1

Hi,

I want to limit hard-coded CMAKE_CONFIGURATION_TYPES to RELEASE and DEBUG only. If I execute cmake GUI on Windows to create Visual Studio build, CMAKE_CONFIGURATION_TYPES is present along with other cmake variables.

How can I remove CMAKE_CONFIGURATION_TYPES from the GUI?

Thanks Dima

flag

49% accept rate

1 Answer

vote up 0 vote down check

Use the MARK_AS_ADVANCED command:

MARK_AS_ADVANCED( CMAKE_CONFIGURATION_TYPES )

Also, remember that in order to change the configuration types, you need to set it before the PROJECT() command.

link|flag
Thanks a lot :) – idimba Jul 26 at 10:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.