Skip to content

Commit

Permalink
libcolumnlistview: hybrid arch build, add to image
Browse files Browse the repository at this point in the history
* This is a very useful control, and 3rd-party apps should be able to
use it.
* But, there are planned improvements (making a better model/view
interface) which prevents making it part of the stable API yet.
  • Loading branch information
pulkomandy committed Sep 28, 2014
1 parent b1218ae commit 0359811
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build/jam/packages/HaikuDevel
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ for lib in [ HaikuImageGetSystemLibs ] $(developmentLibs) {
}

# static libraries
AddFilesToPackage develop lib : <$(architecture)>liblocalestub.a libshared.a ;
AddFilesToPackage develop lib : libcolumnlistview.a
<$(architecture)>liblocalestub.a libshared.a ;

# the POSIX error code mapper library
AddFilesToPackage develop lib : libposix_error_mapper.a ;
Expand Down
3 changes: 2 additions & 1 deletion build/jam/packages/HaikuDevelSecondary
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ for lib in [ HaikuImageGetSystemLibs ] $(developmentLibs) {

# static libraries
AddFilesToPackage develop lib $(architecture)
: <$(architecture)>liblocalestub.a <$(architecture)>libshared.a ;
: <$(architecture)>libcolumnlistview.a <$(architecture)>liblocalestub.a
<$(architecture)>libshared.a ;

# the POSIX error code mapper library
AddFilesToPackage develop lib $(architecture)
Expand Down
9 changes: 5 additions & 4 deletions src/kits/interface/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,11 @@ for architectureObject in [ MultiArchSubDirSetup ] {

: [ MultiArchDefaultGristFiles libshared.a ]
;

StaticLibrary [ MultiArchDefaultGristFiles libcolumnlistview.a ] :
ColumnListView.cpp
ColumnTypes.cpp
;
}
}

StaticLibrary libcolumnlistview.a :
ColumnListView.cpp
ColumnTypes.cpp
;

0 comments on commit 0359811

Please sign in to comment.