Skip to content
Snippets Groups Projects
Commit fc967030 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

winemaker: Abort on unhandled file formats.

parent a948c201
No related branches found
No related tags found
No related merge requests found
...@@ -977,6 +977,9 @@ sub source_scan_project_file($$$) ...@@ -977,6 +977,9 @@ sub source_scan_project_file($$$)
push @{@$project_settings[$T_CEXTRA]},$prj_target_cflags; push @{@$project_settings[$T_CEXTRA]},$prj_target_cflags;
push @{@$project_settings[$T_CXXEXTRA]},$prj_target_cflags; push @{@$project_settings[$T_CXXEXTRA]},$prj_target_cflags;
push @{@$project_settings[$T_DEFINES]},$prj_target_defines; push @{@$project_settings[$T_DEFINES]},$prj_target_defines;
} else {
print STDERR "File format not supported for file: $filename\n";
return;
} }
# Add this project to the project list, except for # Add this project to the project list, except for
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment