Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
baf85ad9
Commit
baf85ad9
authored
Dec 06, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcmaker: Link with msvcrt(d).dll rather than with the static C library.
parent
f1698c4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
msvcmaker
tools/winapi/msvcmaker
+6
-6
No files found.
tools/winapi/msvcmaker
View file @
baf85ad9
...
...
@@ -578,7 +578,7 @@ sub _generate_dsp($$) {
print
OUT
"# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od"
;
@defines
=
(
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN32 _DEBUG _MBCS _LIB)
);
}
else
{
print
OUT
"# ADD BASE CPP /nologo /M
T
d /W3 /Gm /GX /Zi /Od"
;
print
OUT
"# ADD BASE CPP /nologo /M
D
d /W3 /Gm /GX /Zi /Od"
;
@defines
=
(
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN32 _DEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
}
}
else
{
...
...
@@ -586,7 +586,7 @@ sub _generate_dsp($$) {
print
OUT
"# ADD BASE CPP /nologo /W3 /GX /O2"
;
@defines
=
(
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN32 NDEBUG _MBCS _LIB)
);
}
else
{
print
OUT
"# ADD BASE CPP /nologo /M
T
/W3 /GX /O2"
;
print
OUT
"# ADD BASE CPP /nologo /M
D
/W3 /GX /O2"
;
@defines
=
(
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN32 NDEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
}
}
...
...
@@ -607,18 +607,18 @@ sub _generate_dsp($$) {
my
@defines2
;
if
(
$debug
)
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /M
T
d /W3 /Gm /GX /Zi /Od"
;
print
OUT
"# ADD CPP /nologo /M
D
d /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN32 _DEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /M
T
d /W3 /Gm /GX /Zi /Od"
;
print
OUT
"# ADD CPP /nologo /M
D
d /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 _DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
}
}
else
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /M
T
/W3 /GX /O2"
;
print
OUT
"# ADD CPP /nologo /M
D
/W3 /GX /O2"
;
@defines2
=
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN32 NDEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /M
T
/W3 /GX /O2"
;
print
OUT
"# ADD CPP /nologo /M
D
/W3 /GX /O2"
;
@defines2
=
qw(WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 NDEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
}
}
...
...
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