Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CMake
CMake
Commits
c8ee5dbc
Commit
c8ee5dbc
authored
Jun 22, 2017
by
Brad King
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'vs-rc-flags' into release-3.9
parents
5ba09a75
974f4333
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
0 deletions
+8
-0
Source/cmVS10RCFlagTable.h
Source/cmVS10RCFlagTable.h
+1
-0
Source/cmVS11RCFlagTable.h
Source/cmVS11RCFlagTable.h
+1
-0
Source/cmVS12RCFlagTable.h
Source/cmVS12RCFlagTable.h
+1
-0
Source/cmVS14RCFlagTable.h
Source/cmVS14RCFlagTable.h
+1
-0
Tests/VSResource/CMakeLists.txt
Tests/VSResource/CMakeLists.txt
+4
-0
No files found.
Source/cmVS10RCFlagTable.h
View file @
c8ee5dbc
static
cmVS7FlagTable
cmVS10RCFlagTable
[]
=
{
// Bool Properties
{
"NullTerminateStrings"
,
"n"
,
""
,
"true"
,
0
},
{
"SuppressStartupBanner"
,
"nologo"
,
""
,
"true"
,
0
},
{
0
,
0
,
0
,
0
,
0
}
};
Source/cmVS11RCFlagTable.h
View file @
c8ee5dbc
static
cmVS7FlagTable
cmVS11RCFlagTable
[]
=
{
// Bool Properties
{
"NullTerminateStrings"
,
"n"
,
""
,
"true"
,
0
},
{
"SuppressStartupBanner"
,
"nologo"
,
""
,
"true"
,
0
},
{
0
,
0
,
0
,
0
,
0
}
};
Source/cmVS12RCFlagTable.h
View file @
c8ee5dbc
static
cmVS7FlagTable
cmVS12RCFlagTable
[]
=
{
// Bool Properties
{
"NullTerminateStrings"
,
"n"
,
""
,
"true"
,
0
},
{
"SuppressStartupBanner"
,
"nologo"
,
""
,
"true"
,
0
},
{
0
,
0
,
0
,
0
,
0
}
};
Source/cmVS14RCFlagTable.h
View file @
c8ee5dbc
static
cmVS7FlagTable
cmVS14RCFlagTable
[]
=
{
// Bool Properties
{
"NullTerminateStrings"
,
"n"
,
""
,
"true"
,
0
},
{
"SuppressStartupBanner"
,
"nologo"
,
""
,
"true"
,
0
},
{
0
,
0
,
0
,
0
,
0
}
};
Tests/VSResource/CMakeLists.txt
View file @
c8ee5dbc
...
...
@@ -50,5 +50,9 @@ add_library(ResourceLib STATIC lib.cpp lib.rc)
add_executable
(
VSResource main.cpp test.rc
)
target_link_libraries
(
VSResource ResourceLib
)
if
(
MSVC AND NOT MSVC_VERSION VERSION_LESS 1600
)
set_property
(
SOURCE test.rc PROPERTY COMPILE_FLAGS /nologo
)
endif
()
set_property
(
TARGET VSResource
PROPERTY VS_GLOBAL_CMakeTestVsGlobalVariable
"test val"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment