diff --git a/libs/plugins/reasonablesynth.lv2/MSVCreasonablesynth/reasonablesynth.vcproj b/libs/plugins/reasonablesynth.lv2/MSVCreasonablesynth/reasonablesynth.vcproj new file mode 100644 index 0000000000..a966533e6b --- /dev/null +++ b/libs/plugins/reasonablesynth.lv2/MSVCreasonablesynth/reasonablesynth.vcproj @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/libs/plugins/reasonablesynth.lv2/rsynth.c b/libs/plugins/reasonablesynth.lv2/rsynth.c index 68bd81714d..4e35c0e3c2 100644 --- a/libs/plugins/reasonablesynth.lv2/rsynth.c +++ b/libs/plugins/reasonablesynth.lv2/rsynth.c @@ -25,7 +25,11 @@ #include #include #include + +#ifndef COMPILER_MSVC #include +#endif + #include #ifndef BUFFER_SIZE_SAMPLES diff --git a/msvc32-fixup.pl b/msvc32-fixup.pl index 44821b61d3..7e8d4b239c 100644 --- a/msvc32-fixup.pl +++ b/msvc32-fixup.pl @@ -17,6 +17,7 @@ $binary_age = 3000; $current_minus_age = 0; $exec_prefix = "lib"; $dll_suffix = "32"; +$lib_ext = ".dll"; sub process_file { @@ -45,6 +46,7 @@ sub process_file s/\@LT_CURRENT_MINUS_AGE@/$current_minus_age/g; s/\@VERSION@/$msvc_mixbus_version/g; s/\@DLL_SUFFIX\@/$dll_suffix/g; + s/\@LIB_EXT\@/$lib_ext/g; s/\@GETTEXT_PACKAGE\@/$gettext_package/g; s/\@PERL_PATH@/$perl_path/g; s/\@PackagerFolderLocal@/$packager_folder_local/g; @@ -71,6 +73,8 @@ sub process_file } } +process_file ("libs/plugins/reasonablesynth.lv2/manifest.ttl"); + my $command=join(' ',@ARGV); if ($command eq -buildall) { process_file ("MSVCardour3/MSVCMixbus3.vsprops");