summaryrefslogtreecommitdiff
path: root/msvc32-fixup.pl
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2014-11-30 17:57:44 +0000
committerJohn Emmas <johne53@tiscali.co.uk>2014-11-30 17:57:44 +0000
commit2996e677c4cb5c79ed023bb2fa99c85f40754d2a (patch)
treefa91978e5f671c11f062d8d8c1ac2bc9a4444a65 /msvc32-fixup.pl
parent4d4c20b8ccbe9638e9288abdadf66a6f7840b391 (diff)
Process 'default_ui_config.in' when building with MSVC
Diffstat (limited to 'msvc32-fixup.pl')
-rw-r--r--msvc32-fixup.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/msvc32-fixup.pl b/msvc32-fixup.pl
index 7e8d4b239c..5448ed9c30 100644
--- a/msvc32-fixup.pl
+++ b/msvc32-fixup.pl
@@ -18,6 +18,15 @@ $current_minus_age = 0;
$exec_prefix = "lib";
$dll_suffix = "32";
$lib_ext = ".dll";
+$monospace = "ArdourMono";
+$font_small = 9;
+$font_smaller = 8;
+$font_normal = 10;
+$font_big = 14;
+$font_large = 18;
+$font_larger = 24;
+$font_huger = 34;
+$font_massive = 60;
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,6 +92,7 @@ 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) {