No C/C++ section in property pages

Guys, when I right click on UE4 project (in Visual Studio Solution Explorer) and select Properties/Configuration properties, there is no C/C++ section (and few more are missing too). Anyone knows what to do to bring them back?

Thank you.

Can you post a screenshot?

EDIT: No screenshot needed. See next post.

The UE4 solution and any project solutions generated by the Unreal Engine batch files are makefile based projects, in such projects the C/C++ compiler/linker options are configured by the makefiles, that’s why you don’t see those sections. With Unreal what actually happens is that when you tell VS to build it invokes the Unreal Build Tool (UBT) to do the actual work, so any compiler/linker options are setup by UBT.

Take a look at this http://msdn.microsoft.com/de-de/library/dd9y37ha.aspx

Yes. UE4 has it’s own build system, so not having the usual compiler and linker options is expected.

Thanks guys.
Regards

sooooo… what are options to access those settings in ubt fasion ???