mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-08 21:53:02 +02:00
add CMakeList for mixer project
This commit is contained in:
parent
a4e19dcb3b
commit
2f24c698c6
2 changed files with 9 additions and 1 deletions
|
@ -7,4 +7,5 @@ set(GLM_ROOT_DIR ${CMAKE_SOURCE_DIR}/thirdparty)
|
|||
set(PORTAUDIO_ROOT_DIR ${CMAKE_SOURCE_DIR}/thirdparty/Portaudio)
|
||||
set(LODEPNG_ROOT_DIR ${CMAKE_SOURCE_DIR}/thirdparty/LodePNG)
|
||||
|
||||
add_subdirectory(interface)
|
||||
add_subdirectory(interface)
|
||||
add_subdirectory(mixer)
|
7
mixer/CMakeLists.txt
Normal file
7
mixer/CMakeLists.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
project(mixer)
|
||||
|
||||
file(GLOB MIXER_SRCS src/*.cpp src/*.h)
|
||||
|
||||
add_executable(mixer ${MIXER_SRCS})
|
Loading…
Reference in a new issue