mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
34fe2478a2
Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
46 lines
995 B
Meson
46 lines
995 B
Meson
# This is just a stub project to include all the others as subprojects
|
|
# for development shell purposes
|
|
|
|
project('nix-dev-shell', 'cpp',
|
|
version : files('.version'),
|
|
subproject_dir : 'src',
|
|
)
|
|
|
|
# Internal Libraries
|
|
subproject('libutil')
|
|
subproject('libstore')
|
|
subproject('libfetchers')
|
|
subproject('libexpr')
|
|
subproject('libflake')
|
|
subproject('libmain')
|
|
subproject('libcmd')
|
|
|
|
# Executables
|
|
subproject('nix')
|
|
|
|
# Docs
|
|
subproject('internal-api-docs')
|
|
subproject('external-api-docs')
|
|
|
|
# External C wrapper libraries
|
|
subproject('libutil-c')
|
|
subproject('libstore-c')
|
|
subproject('libexpr-c')
|
|
subproject('libmain-c')
|
|
|
|
# Language Bindings
|
|
if not meson.is_cross_build()
|
|
subproject('perl')
|
|
endif
|
|
|
|
# Testing
|
|
subproject('nix-util-test-support')
|
|
subproject('nix-util-tests')
|
|
subproject('nix-store-test-support')
|
|
subproject('nix-store-tests')
|
|
subproject('nix-fetchers-tests')
|
|
subproject('nix-expr-test-support')
|
|
subproject('nix-expr-tests')
|
|
subproject('nix-flake-tests')
|
|
subproject('nix-functional-tests')
|