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
d60b99bd
Commit
d60b99bd
authored
Dec 06, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcmaker: Remove references to wine_unicode and to .spec.c files.
parent
7a576634
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
msvcmaker
tools/winapi/msvcmaker
+7
-9
No files found.
tools/winapi/msvcmaker
View file @
d60b99bd
...
...
@@ -425,12 +425,11 @@ sub _generate_dsp($$) {
my
@header_files
=
@
{
$modules
{
$module
}{
header_files
}};
my
@resource_files
=
@
{
$modules
{
$module
}{
resource_files
}};
if
(
$project
!~
/^wine(?:
_unicode|
build|runtests|test)?$/
&&
if
(
$project
!~
/^wine(?:build|runtests|test)?$/
&&
$project
!~
/^(?:gdi32)_.+?$/
&&
$project
!~
/_test$/
)
{
push
@source_files
,
"$project.spec"
;
# push @source_files, "$project.spec.c";
@source_files
=
sort
(
@source_files
);
}
...
...
@@ -746,10 +745,9 @@ sub _generate_dsp($$) {
if
(
$project
eq
"winebuild"
)
{
print
OUT
"# Begin Special Build Tool\r\n"
;
print
OUT
"SOURCE=\"\$(InputPath)\"\r\n"
;
print
OUT
"PostBuild_Desc=Copying wine.lib
and wine_unicode.lib
...\r\n"
;
print
OUT
"PostBuild_Desc=Copying wine.lib ...\r\n"
;
print
OUT
"PostBuild_Cmds="
;
print
OUT
"copy ..\\..\\libs\\wine\\$output_dir\\wine.lib \$(OutDir)\t"
;
print
OUT
"copy ..\\..\\libs\\unicode\\$output_dir\\wine_unicode.lib \$(OutDir)\r\n"
;
print
OUT
"copy ..\\..\\libs\\wine\\$output_dir\\wine.lib \$(OutDir)\r\n"
;
print
OUT
"# End Special Build Tool\r\n"
;
}
print
OUT
"# Begin Target\r\n"
;
...
...
@@ -978,14 +976,14 @@ sub _generate_wine_dsw($) {
my
$dsp_file
=
$modules
{
$module
}{
dsp_file
};
my
@dependencies
;
if
(
$project
=~
/^wine(?:_unicode)?$/
)
{
if
(
$project
eq
"wine"
)
{
@dependencies
=
();
}
elsif
(
$project
=~
/^winebuild$/
)
{
@dependencies
=
(
"wine"
,
"wine_unicode"
);
}
elsif
(
$project
eq
"winebuild"
)
{
@dependencies
=
(
"wine"
);
}
elsif
(
$project
=~
/^(?:gdi32)_.+?$/
)
{
@dependencies
=
();
}
else
{
@dependencies
=
(
"wine"
,
"wine
_unicode"
,
"wine
build"
);
@dependencies
=
(
"wine"
,
"winebuild"
);
}
if
(
$project
=~
/^gdi32$/
)
{
...
...
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