Fix ExportFormatSpecification copy-c'tor
[ardour.git] / msvc32-fixup.pl
index 7e8d4b239c1726b59410bdbad29fb0d9b34bce28..e85ab18be2d1988fdd4d6b419c2346723c92637a 100644 (file)
@@ -3,8 +3,8 @@
 
 require "../gnu-windows/src/local-paths.lib";
 
-$msvc_mixbus_version = "3.00.0";
-$major = 3;
+$msvc_mixbus_version = "5.00.0";
+$major = 5;
 $minor = 0;
 $micro = 0;
 $interface_age = 0;
@@ -13,11 +13,20 @@ $scanner_major = 2;
 $scanner_minor = 0;
 $scanner_micro = 0;
 $scanner_interface_age = 0;
-$binary_age = 3000;
+$binary_age = 5000;
 $current_minus_age = 0;
 $exec_prefix = "lib";
 $dll_suffix = "32";
 $lib_ext = ".dll";
+$monospace = "ArdourMono";
+$font_small = 8.5;
+$font_smaller = 8;
+$font_normal = 9;
+$font_big = 11;
+$font_large = 14.5;
+$font_larger = 19;
+$font_huger = 27;
+$font_massive = 48;
 
 sub process_file
 {
@@ -47,6 +56,15 @@ sub process_file
            s/\@VERSION@/$msvc_mixbus_version/g;
            s/\@DLL_SUFFIX\@/$dll_suffix/g;
            s/\@LIB_EXT\@/$lib_ext/g;
+           s/\@MONOSPACE\@/$monospace/g;
+           s/\@FONT_SMALL\@/$font_small/g;
+           s/\@FONT_SMALLER\@/$font_smaller/g;
+           s/\@FONT_NORMAL\@/$font_normal/g;
+           s/\@FONT_BIG\@/$font_big/g;
+           s/\@FONT_LARGE\@/$font_large/g;
+           s/\@FONT_LARGER\@/$font_larger/g;
+           s/\@FONT_HUGER\@/$font_huger/g;
+           s/\@FONT_MASSIVE\@/$font_massive/g;
            s/\@GETTEXT_PACKAGE\@/$gettext_package/g;
            s/\@PERL_PATH@/$perl_path/g;
            s/\@PackagerFolderLocal@/$packager_folder_local/g;
@@ -74,11 +92,12 @@ sub process_file
 }
 
 process_file ("libs/plugins/reasonablesynth.lv2/manifest.ttl");
+process_file ("gtk2_ardour/default_ui_config");
 
 my $command=join(' ',@ARGV);
 if ($command eq -buildall) {
-       process_file ("MSVCardour3/MSVCMixbus3.vsprops");
-       process_file ("MSVCMixbus3/MSVCMixbus3.vsprops");
+       process_file ("MSVCardour3/MSVCArdour5.vsprops");
+       process_file ("MSVCMixbus3/MSVCMixbus5.vsprops");
        process_file ("MSVCvst_scan/vst_scan.rc");
-       process_file ("icons/win32/msvc_resources.rc");
+       process_file ("gtk2_ardour/win32/msvc_resources.rc");
 }