-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
104 lines (91 loc) · 2.76 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
cmake_minimum_required(VERSION 3.14.0)
# suzumushi
option(SMTG_ENABLE_VST3_PLUGIN_EXAMPLES "Enable VST 3 Plug-in Examples" OFF)
option(SMTG_ENABLE_VST3_HOSTING_EXAMPLES "Enable VST 3 Hosting Examples" OFF)
option(SMTG_CREATE_PLUGIN_LINK "" OFF)
option(SMTG_CXX_STANDAR "" 20)
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.13 CACHE STRING "")
set(vst3sdk_SOURCE_DIR "C:/D/Repos/VST_SDK/vst3sdk")
if(NOT vst3sdk_SOURCE_DIR)
message(FATAL_ERROR "Path to VST3 SDK is empty!")
endif()
project(VoMPE
# This is your plug-in version number. Change it here only.
# Version number symbols usable in C++ can be found in
# source/version.h and ${PROJECT_BINARY_DIR}/projectversion.h.
VERSION 1.1.0.0
DESCRIPTION "VoMPE"
)
set(SMTG_VSTGUI_ROOT "${vst3sdk_SOURCE_DIR}")
add_subdirectory(${vst3sdk_SOURCE_DIR} ${PROJECT_BINARY_DIR}/vst3sdk)
smtg_enable_vst3_sdk()
smtg_add_vst3plugin(VoMPE
source/SODDL.h
source/SOextparam.h
source/SOextparam.cpp
source/version.h
source/VM1_3downsampler.h
source/VMcids.h
source/VMconfig.h
source/VMcontroller.h
source/VMcontroller.cpp
source/VMentry.cpp
source/VMextparam.h
source/VMFFT.h
source/VMLPC.h
source/VMMIDI.h
source/VMMIDI.cpp
source/VMparam.h
source/VMprocessor.h
source/VMprocessor.cpp
source/VMView.h
source/VMViewcreator.cpp
source/VMvst3editor.h
)
#- VSTGUI Wanted ----
if(SMTG_ENABLE_VSTGUI_SUPPORT)
target_sources(VoMPE
PRIVATE
resource/VoMPE.uidesc
)
target_link_libraries(VoMPE
PRIVATE
vstgui_support
)
smtg_target_add_plugin_resources(VoMPE
RESOURCES
"resource/VoMPE.uidesc"
)
endif(SMTG_ENABLE_VSTGUI_SUPPORT)
# -------------------
smtg_target_add_plugin_snapshots (VoMPE
RESOURCES
resource/FFAE99B6C1EF50FD8A922F1B437EC7AE_snapshot.png
resource/FFAE99B6C1EF50FD8A922F1B437EC7AE_snapshot_2.0x.png
)
target_link_libraries(VoMPE
PRIVATE
sdk
)
smtg_target_configure_version_file(VoMPE)
if(SMTG_MAC)
smtg_target_set_bundle(VoMPE
BUNDLE_IDENTIFIER foobar
COMPANY_NAME "suzumushi"
)
smtg_target_set_debug_executable(VoMPE
"/Applications/VST3PluginTestHost.app"
"--pluginfolder;$(BUILT_PRODUCTS_DIR)"
)
elseif(SMTG_WIN)
target_sources(VoMPE PRIVATE
resource/win32resource.rc
)
if(MSVC)
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT VoMPE)
smtg_target_set_debug_executable(VoMPE
"$(ProgramW6432)/Steinberg/VST3PluginTestHost/VST3PluginTestHost.exe"
"--pluginfolder \"$(OutDir)/\""
)
endif()
endif(SMTG_MAC)