mirror of
https://github.com/overte-org/overte.git
synced 2025-04-11 20:12:27 +02:00
11 lines
No EOL
270 B
CMake
11 lines
No EOL
270 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
project (interface)
|
|
|
|
add_subdirectory (src)
|
|
|
|
# third party libraries
|
|
find_package (Portaudio REQUIRED)
|
|
include_directories (${Portaudio_INCLUDE_DIRS})
|
|
set (LIBS ${LIBS} ${Portaudio_LIBRARIES})
|
|
|
|
target_link_libraries (interface LIBS) |