fix, dub proj, target kind not found for 'library'

This commit is contained in:
Basile Burg 2015-09-19 11:00:26 +02:00
parent a9a985d560
commit 2ad47f35f0
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ begin
begin begin
case tt.AsString of case tt.AsString of
'executable': fBinKind := executable; 'executable': fBinKind := executable;
'staticLibrary' : fBinKind := staticlib; 'staticLibrary', 'library' : fBinKind := staticlib;
'dynamicLibrary' : fBinKind := sharedlib; 'dynamicLibrary' : fBinKind := sharedlib;
'autodetect': result := false; 'autodetect': result := false;
else fBinKind := executable; else fBinKind := executable;