-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
36 lines (29 loc) · 1.18 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
cmake_minimum_required(VERSION 3.22)
project(lab-audio-effect VERSION 0.0.1)
set_directory_properties(PROPERTIES
JUCE_COMPANY_NAME "Sqazine"
JUCE_COMPANY_EMAIL "[email protected]")
add_subdirectory(JUCE)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Bin/Debug)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Bin/Release)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_BINARY_DIR}/Bin/RelWithDebInfo)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Bin/Debug)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Bin/Release)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_BINARY_DIR}/Bin/RelWithDebInfo)
add_subdirectory(Host)
if(MSVC)
set_property (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT Host)
endif()
add_subdirectory(AudioPlayer)
add_subdirectory(ThreeBandEqualizer)
add_subdirectory(Delay)
add_subdirectory(Distortion)
add_subdirectory(Filter)
add_subdirectory(Flanger)
add_subdirectory(NoiseGate)
add_subdirectory(Oscillator)
add_subdirectory(PingPongDelay)
add_subdirectory(Reverb)
add_subdirectory(SimpleDistortion)
add_subdirectory(SimpleEQ)
add_subdirectory(Chorus)