meson.build 269 Bytes
Newer Older
1 2 3
java = static_library(
  'java',
  'Global.cxx',
4
  'Exception.cxx',
5
  'File.cxx',
6
  'Object.cxx',
7 8 9 10 11 12 13 14 15 16 17 18 19
  'String.cxx',
  include_directories: inc,
  dependencies: [
  ],
)

java_dep = declare_dependency(
  link_with: java,
  dependencies: [
    util_dep,
    fs_dep,
  ],
)