2

I want to concatenate two strings without a separator between them (so no new destination).

theme_dir_dark = join_paths(get_option('datadir'), 'themes', meson.project_name(), '-dark')

meson.project_name() is Pop and I want theme_dir_dark to end with Pop-dark and not Pop/-dark.

Mickey
  • 57
  • 3

1 Answers1

2

Either with formatting or concatenation '@0@-dark'.format(meson.project_name()) or meson.project_version() + '-dark'

dcbaker
  • 643
  • 2
  • 7