Skip to content

Commit

Permalink
noinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
newdigate committed Sep 15, 2024
1 parent 4c08794 commit d4e76a1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 8 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ add_subdirectory(src)
find_library(LIB_soundio soundio)
if (LIB_soundio)
add_subdirectory(extras/soundio/src)
add_subdirectory(extras/soundio/examples/analyze)
add_subdirectory(extras/soundio/examples/basic)
add_subdirectory(extras/soundio/examples/input)
add_subdirectory(extras/soundio/examples/playmemory)
add_subdirectory(extras/soundio/examples/queue)
add_subdirectory(extras/soundio/examples/recordsine)
if (DEFINED BUILD_SOUNDIO_EXAMPLES)
add_subdirectory(extras/soundio/examples/analyze)
add_subdirectory(extras/soundio/examples/basic)
add_subdirectory(extras/soundio/examples/input)
add_subdirectory(extras/soundio/examples/playmemory)
add_subdirectory(extras/soundio/examples/queue)
add_subdirectory(extras/soundio/examples/recordsine)
endif()
endif()
4 changes: 4 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ cmake_minimum_required(VERSION 3.5)
project(teensy_audio_x86_stubs C CXX)
set(teensy_audio_x86_stubs_VERSION 1.0.0)

find_library(teensy_x86_stubs NAME teensy_x86_stubs)
find_library(teensy_x86_sd_stubs NAME teensy_x86_sd_stubs)
include_directories(${teensy_x86_sd_stubs_LIBS})

set(CMAKE_CXX_STANDARD 11)
set(SOURCE_FILES
Quantizer.cpp
Expand Down

0 comments on commit d4e76a1

Please sign in to comment.