mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-15 14:16:00 -06:00
8 lines
No EOL
334 B
CMake
Executable file
8 lines
No EOL
334 B
CMake
Executable file
function(add_airwindows_plugin name)
|
|
file(GLOB plug_src
|
|
src/${name}/*.h
|
|
src/${name}/*.cpp)
|
|
add_library(${name} MODULE ${plug_src} ${VSTSDK_SOURCES})
|
|
target_include_directories(${name} PRIVATE ${VSTSDK_ROOT})
|
|
set_target_properties(${name} PROPERTIES PREFIX "")
|
|
endfunction(add_airwindows_plugin) |