mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
5d8738468f
Teach the VS >= 10 generator to honor flags other than -I and -D in the CMAKE_RC_FLAGS[_<CONFIG>] variable. Place them within the ResourceCompile .vcxproj element under AdditionalOptions. Also add a rudimentary flag map to map '-n' to 'NullTerminateStrings'.
8 lines
132 B
C
8 lines
132 B
C
static cmVS7FlagTable cmVS10RCFlagTable[] =
|
|
{
|
|
//Bool Properties
|
|
{"NullTerminateStrings", "n", "", "true", 0},
|
|
|
|
{0,0,0,0,0}
|
|
};
|