Closed seanyen closed 5 years ago
@clalancette @chadrockey This is a fix for build breaks I noticed on Windows build. Hope you can take a look. Thanks!
It seemed to me that the failing check Dpr__depthimage_to_laserscan__ubuntu_bionic_amd64
is not related to this change:
GNU C Compiler Warnings: 4 warnings.
DepthImageToLaserScanROS.cpp:55 | Normal | GNU C Compiler 4 (gcc) | Warning:deprecated-declarations
-- | -- | -- | --
DepthImageToLaserScanROS.cpp:60 | Normal | GNU C Compiler 4 (gcc) | Warning:deprecated-declarations
DepthImageToLaserScanROS.cpp:62 | Normal | GNU C Compiler 4 (gcc) | Warning:deprecated-declarations
DepthImageToLaserScanROS.cpp:102 | Normal | GNU C Compiler 4 (gcc) | Warning:deprecated-declarations
Closed this one and in favor of #44.
The imported library of
DepthImageToLaserScan.lib
is not generated since no functions are dllexport'd fromDepthImageToLaserScan
, consequentlydepthimage_to_laserscan-test
fails to build when trying to link against it. Use WINDOWS_EXPORT_ALL_SYMBOLS to make every functions fromDepthImageToLaserScan
dllexport'd to fix it.