JvanKatwijk / dab-cmdline

DAB decoding library with example of its use
GNU General Public License v2.0
57 stars 29 forks source link

Fix include of device-exceptions.h #95

Closed chris-y closed 1 year ago

chris-y commented 1 year ago

When building dab-scanner-rtlsdr, the following error occurred:

devices/rtlsdr-handler/rtlsdr-handler.cpp:32:10: fatal error: device-exceptions.h: No such file or directory
   32 | #include "device-exceptions.h"
      |          ^~~~~~~~~~~~~~~~~~~~~

Commands used to encounter the problem:

$cd dab-scanner/
$ mkdir build
$ cd build
$ cmake .. -DRTLSDR=ON
$ make

This pull request fixes this error.

JvanKatwijk commented 1 year ago

Next week I ll have a look, thanks

On Wed, Jun 21, 2023, 10:49 AM Chris Young @.***> wrote:

When building dab-scanner-rtlsdr, the following error occurred:

devices/rtlsdr-handler/rtlsdr-handler.cpp:32:10: fatal error: device-exceptions.h: No such file or directory 32 | #include "device-exceptions.h" | ^~~~~

Commands used to encounter the problem:

$cd dab-scanner/ $ mkdir build $ cd build $ cmake .. -DRTLSDR=ON $ make

This pull request fixes this error.

You can view, comment on, or merge this pull request online at:

https://github.com/JvanKatwijk/dab-cmdline/pull/95 Commit Summary

File Changes

(1 file https://github.com/JvanKatwijk/dab-cmdline/pull/95/files)

Patch Links:

— Reply to this email directly, view it on GitHub https://github.com/JvanKatwijk/dab-cmdline/pull/95, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACCPHQHA4FRYFVTTQO5XKKTXMKYRVANCNFSM6AAAAAAZONBZWQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

JvanKatwijk commented 1 year ago

I addressed it by changing the CMaleLists.txt file, the the offending file was not named

Op wo 21 jun 2023 om 17:14 schreef jan van katwijk @.***>:

Next week I ll have a look, thanks

On Wed, Jun 21, 2023, 10:49 AM Chris Young @.***> wrote:

When building dab-scanner-rtlsdr, the following error occurred:

devices/rtlsdr-handler/rtlsdr-handler.cpp:32:10: fatal error: device-exceptions.h: No such file or directory 32 | #include "device-exceptions.h" | ^~~~~

Commands used to encounter the problem:

$cd dab-scanner/ $ mkdir build $ cd build $ cmake .. -DRTLSDR=ON $ make

This pull request fixes this error.

You can view, comment on, or merge this pull request online at:

https://github.com/JvanKatwijk/dab-cmdline/pull/95 Commit Summary

File Changes

(1 file https://github.com/JvanKatwijk/dab-cmdline/pull/95/files)

Patch Links:

— Reply to this email directly, view it on GitHub https://github.com/JvanKatwijk/dab-cmdline/pull/95, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACCPHQHA4FRYFVTTQO5XKKTXMKYRVANCNFSM6AAAAAAZONBZWQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

-- Jan van Katwijk

chris-y commented 1 year ago

Cool, I'll close this then.