diff --git a/meson.build b/meson.build index a6c8804..0514a4f 100644 --- a/meson.build +++ b/meson.build @@ -10,7 +10,6 @@ src_dir = include_directories('source/') pkgc = import('pkgconfig') dyaml_src = [ - 'source/dyaml/all.d', 'source/dyaml/anchor.d', 'source/dyaml/composer.d', 'source/dyaml/constructor.d', @@ -51,10 +50,8 @@ dyaml_src = [ 'source/dyaml/test/tokens.d', 'source/dyaml/token.d', 'source/dyaml/unused.d', - 'source/dyaml/zerostring.d', - 'source/yaml.d' + 'source/dyaml/zerostring.d' ] -install_headers('source/yaml.d', subdir: 'd/yaml/') install_subdir('source/dyaml', install_dir: 'include/d/yaml/') tinyendian_dep = dependency('tinyendian', version: '>=0.1.2', required: false) diff --git a/source/dyaml/all.d b/source/dyaml/all.d deleted file mode 100644 index 0925267..0000000 --- a/source/dyaml/all.d +++ /dev/null @@ -1,9 +0,0 @@ - -// Copyright Ferdinand Majerech 2011. -// Distributed under the Boost Software License, Version 1.0. -// (See accompanying file LICENSE_1_0.txt or copy at -// http://www.boost.org/LICENSE_1_0.txt) - -deprecated("Import dyaml instead") module dyaml.all; - -public import dyaml; diff --git a/source/yaml.d b/source/yaml.d deleted file mode 100644 index 1582fd2..0000000 --- a/source/yaml.d +++ /dev/null @@ -1,9 +0,0 @@ - -// Copyright Ferdinand Majerech 2011. -// Distributed under the Boost Software License, Version 1.0. -// (See accompanying file LICENSE_1_0.txt or copy at -// http://www.boost.org/LICENSE_1_0.txt) - -deprecated("Import dyaml instead") module yaml; - -public import dyaml;