mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 21:10:12 +02:00
17 lines
No EOL
423 B
CMake
17 lines
No EOL
423 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(mixer)
|
|
|
|
# grab the implemenation and header files
|
|
file(GLOB MIXER_SRCS src/*.cpp src/*.h)
|
|
|
|
# add the mixer executable
|
|
add_executable(mixer ${MIXER_SRCS})
|
|
|
|
# link the shared hifi library
|
|
include(../cmake/macros/LinkHifiLibrary.cmake)
|
|
link_hifi_library(shared mixer)
|
|
|
|
# link the threads library
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries(mixer ${CMAKE_THREAD_LIBS_INIT}) |