Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Fred Wright
CMake
Commits
beeba658
Commit
beeba658
authored
Jul 28, 2006
by
Bill Hoffman
Browse files
ENH: move stuff from main tree
parent
9680017c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog.manual
View file @
beeba658
Changes in CMake 2.4.3
* fix for 3557 - Under MSVC8 hardcoded TargetEnvironment for MIDL Compiler
* Fix for Xcode all projects to prevent -fvisibility=hidden flags. This is
needed to make RTTI work by default.
...
...
Source/cmLocalVisualStudio7Generator.cxx
View file @
beeba658
...
...
@@ -551,7 +551,18 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout,
this
->
OutputDefineFlags
(
defineFlags
.
c_str
(),
fout
);
fout
<<
"
\"\n
"
;
fout
<<
"
\t\t\t\t
MkTypLibCompatible=
\"
FALSE
\"\n
"
;
fout
<<
"
\t\t\t\t
TargetEnvironment=
\"
1
\"\n
"
;
if
(
this
->
PlatformName
==
"x64"
)
{
fout
<<
"
\t\t\t\t
TargetEnvironment=
\"
3
\"\n
"
;
}
else
if
(
this
->
PlatformName
==
"ia64"
)
{
fout
<<
"
\t\t\t\t
TargetEnvironment=
\"
2
\"\n
"
;
}
else
{
fout
<<
"
\t\t\t\t
TargetEnvironment=
\"
1
\"\n
"
;
}
fout
<<
"
\t\t\t\t
GenerateStublessProxies=
\"
TRUE
\"\n
"
;
fout
<<
"
\t\t\t\t
TypeLibraryName=
\"
$(InputName).tlb
\"\n
"
;
fout
<<
"
\t\t\t\t
OutputDirectory=
\"
$(IntDir)
\"\n
"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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