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
45d248f1
Commit
45d248f1
authored
Mar 23, 2008
by
Reece Dunn
Committed by
Alexandre Julliard
Mar 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: Target the version defines to Vista in msvcmaker.
parent
ae32a7fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
msvcmaker
tools/winapi/msvcmaker
+8
-8
No files found.
tools/winapi/msvcmaker
View file @
45d248f1
...
...
@@ -575,18 +575,18 @@ sub _generate_dsp($$) {
if
(
$debug
)
{
if
(
$lib
||
$exe
)
{
print
OUT
"# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od"
;
@defines
=
(
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 WIN32 _DEBUG _MBCS _LIB)
);
@defines
=
(
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 WIN32 _DEBUG _MBCS _LIB)
);
}
else
{
print
OUT
"# ADD BASE CPP /nologo /MDd /W3 /Gm /GX /Zi /Od"
;
@defines
=
(
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 WIN32 _DEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
@defines
=
(
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 WIN32 _DEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
}
}
else
{
if
(
$lib
||
$exe
)
{
print
OUT
"# ADD BASE CPP /nologo /W3 /GX /O2"
;
@defines
=
(
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 WIN32 NDEBUG _MBCS _LIB)
);
@defines
=
(
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 WIN32 NDEBUG _MBCS _LIB)
);
}
else
{
print
OUT
"# ADD BASE CPP /nologo /MD /W3 /GX /O2"
;
@defines
=
(
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 WIN32 NDEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
@defines
=
(
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 WIN32 NDEBUG _WINDOWS _MBCS _USRDLL)
,
(
"\U${project}\E_EXPORTS"
));
}
}
...
...
@@ -607,18 +607,18 @@ sub _generate_dsp($$) {
if
(
$debug
)
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 WIN32 _DEBUG _WINDOWS _MBCS _LIB)
;
@defines2
=
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 WIN32 _DEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 _DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
@defines2
=
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x7
00 _DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
}
}
else
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /MD /W3 /GX /O2"
;
@defines2
=
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 WIN32 NDEBUG _WINDOWS _MBCS _LIB)
;
@defines2
=
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 WIN32 NDEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /MD /W3 /GX /O2"
;
@defines2
=
qw(WINVER=0x0
501 _WIN32_WINNT=0x0501 _WIN32_IE=0x06
00 NDEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
@defines2
=
qw(WINVER=0x0
600 _WIN32_WINNT=0x0600 _WIN32_IE=0x07
00 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