Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fa9b9f5f
Commit
fa9b9f5f
authored
Nov 22, 2004
by
Steven Edwards
Committed by
Alexandre Julliard
Nov 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define "WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600" for all
the targets.
parent
25cdb4c2
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 @
fa9b9f5f
...
...
@@ -636,10 +636,10 @@ sub _generate_dsp($$) {
}
else
{
if
(
$lib
||
$exe
)
{
print
OUT
"# ADD BASE CPP /nologo /W3 /GX /O2"
;
@defines
=
(
qw(WIN32 NDEBUG _MBCS _LIB)
);
@defines
=
(
qw(WIN
VER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN
32 NDEBUG _MBCS _LIB)
);
}
else
{
print
OUT
"# ADD BASE CPP /nologo /MT /W3 /GX /O2"
;
@defines
=
(
qw(WIN32 NDEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
@defines
=
(
qw(WIN
VER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN
32 NDEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
}
}
...
...
@@ -657,18 +657,18 @@ sub _generate_dsp($$) {
if
(
$debug
)
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WIN32 _DEBUG _WINDOWS _MBCS _LIB)
;
@defines2
=
qw(WIN
VER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN
32 _DEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(_DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
@defines2
=
qw(
WINVER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600
_DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
}
}
else
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /MT /W3 /GX /O2"
;
@defines2
=
qw(WIN32 NDEBUG _WINDOWS _MBCS _LIB)
;
@defines2
=
qw(WIN
VER=0x0501 _WIN32_WINNT=0x0501 _WIN32_IE=0x0600 WIN
32 NDEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /MT /W3 /GX /O2"
;
@defines2
=
qw(NDEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
@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