File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ else()
2525 file (GLOB_RECURSE SRC_LIST_CPP CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR} /src/*.cpp" )
2626
2727 # define libraries
28- add_library (audio_driver ${SRC_LIST_C} ${GLOB_RECURSE SRC_LIST_CPP})
28+ add_library (audio_driver ${SRC_LIST_C} ${SRC_LIST_CPP} )
2929
3030 # prevent compile errors
3131 target_compile_options (audio_driver PRIVATE -DUSE_DEFAULT_STDLIB)
3232
3333 # define location for header files
34- target_include_directories (audio_driver PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} /src ${CMAKE_CURRENT_SOURCE_DIR} /src/libhelix-mp3 ${CMAKE_CURRENT_SOURCE_DIR} /src/libhelix-aac )
34+ target_include_directories (audio_driver PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} /src )
3535
3636endif ()
Original file line number Diff line number Diff line change 2222 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323 * THE SOFTWARE.
2424 */
25+ #ifdef ARDUINO
2526
2627#include " ad1938.h"
2728
@@ -774,3 +775,4 @@ bool AD1938::setMuteADC(bool mute) {
774775}
775776
776777
778+ #endif
Original file line number Diff line number Diff line change 2323 */
2424
2525#include <string.h>
26+ #include <assert.h>
2627#include "es8311.h"
2728
28-
2929#ifndef BIT
3030#define BIT (nr ) (1 << (nr))
3131#endif
You can’t perform that action at this time.
0 commit comments