Skip to content

Commit

Permalink
bluetooth_server: Fix multi-arch build
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Apr 22, 2016
1 parent 2080295 commit e29ff32
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions src/kits/bluetooth/Jamfile
Expand Up @@ -10,22 +10,28 @@ UsePrivateHeaders shared bluetooth ;

SubDirHdrs [ FDirName $(SUBDIR) UI ] ;

SEARCH_SOURCE += [ FDirName $(SUBDIR) UI ] ;


SharedLibrary libbluetooth.so :
LocalDevice.cpp
DiscoveryListener.cpp
DiscoveryAgent.cpp
RemoteDevice.cpp
CommandManager.cpp
KitSupport.cpp
DeviceClass.cpp
#UI
PincodeWindow.cpp
ConnectionIncoming.cpp
: be localestub [ TargetLibstdc++ ]
;
local architectureObject ;
for architectureObject in [ MultiArchSubDirSetup ] {
on $(architectureObject) {

SEARCH_SOURCE += [ FDirName $(SUBDIR) UI ] ;

SharedLibrary [ MultiArchDefaultGristFiles libbluetooth.so ] :
LocalDevice.cpp
DiscoveryListener.cpp
DiscoveryAgent.cpp
RemoteDevice.cpp
CommandManager.cpp
KitSupport.cpp
DeviceClass.cpp
#UI
PincodeWindow.cpp
ConnectionIncoming.cpp
:
be localestub [ TargetLibstdc++ ]
;
}
}

DoCatalogs libbluetooth.so :
x-vnd.Haiku-Bluetooth
Expand Down

0 comments on commit e29ff32

Please sign in to comment.