summary refs log tree commit diff stats
path: root/src/htm/Properties
ModeNameSize
-rw-r--r--AssemblyInfo.cs2331log stats plain blame
-rw-r--r--Resources.Designer.cs2844log stats plain blame
-rw-r--r--Resources.resources180log stats plain blame
-rw-r--r--Resources.resx5698log stats plain blame
-rw-r--r--Settings.Designer.cs1091log stats plain blame
-rw-r--r--Settings.settings242log stats plain blame
ff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
add_languages('cs')

executable('thememan',
  sources: [
    'Program.cs',
    'Main.cs',
    'Main.Designer.cs',
  ],
  resources: [
    # 'Main.resx', # FIXME: Allow setting resource id
    'thememan.HTM.resources',
  ],
  cs_args: [
    '-r:WindowsBase',
    '-r:System.Data',
    '-r:System.Drawing',
    '-r:System.Windows.Forms',
    '-win32icon:' + meson.current_source_dir() + '/Resources/htm.ico'
  ],
  install: true,
)

thememan_conf = configuration_data()
thememan_conf.set('exec_prefix', get_option('prefix'))
thememan_conf.set('bindir', join_paths(get_option('prefix'), get_option('bindir')))

configure_file(
  input: 'thememan.in',
  output: 'thememan',
  configuration: thememan_conf,
  install: true,
  install_dir: get_option('bindir'),
)