diff --git a/CMakeLists.txt b/CMakeLists.txt index df1e4677d5..02af58192e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) \ No newline at end of file +add_subdirectory(interface) +add_subdirectory(mixer) \ No newline at end of file diff --git a/mixer/CMakeLists.txt b/mixer/CMakeLists.txt new file mode 100644 index 0000000000..a966e49a64 --- /dev/null +++ b/mixer/CMakeLists.txt @@ -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}) \ No newline at end of file