2024-06-04 09:28:27 -04:00
|
|
|
# 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'),
|
2024-08-14 16:19:35 -04:00
|
|
|
default_options : [
|
|
|
|
'localstatedir=/nix/var',
|
|
|
|
]
|
2024-06-04 09:28:27 -04:00
|
|
|
)
|
|
|
|
|
2024-07-08 09:47:25 -04:00
|
|
|
# Internal Libraries
|
2024-06-04 09:28:27 -04:00
|
|
|
subproject('libutil')
|
2024-06-04 09:28:27 -04:00
|
|
|
subproject('libstore')
|
2024-06-05 21:36:18 -04:00
|
|
|
subproject('libfetchers')
|
2024-06-26 22:15:33 -04:00
|
|
|
subproject('libexpr')
|
|
|
|
subproject('libflake')
|
2024-07-03 14:47:23 -04:00
|
|
|
subproject('libmain')
|
|
|
|
subproject('libcmd')
|
2024-06-26 22:15:33 -04:00
|
|
|
|
2024-07-05 16:21:20 -04:00
|
|
|
# Executables
|
|
|
|
subproject('nix')
|
|
|
|
|
2024-06-26 22:15:33 -04:00
|
|
|
# Docs
|
2024-06-27 19:19:32 -04:00
|
|
|
subproject('internal-api-docs')
|
|
|
|
subproject('external-api-docs')
|
2024-07-30 15:05:22 -04:00
|
|
|
if not meson.is_cross_build()
|
|
|
|
subproject('nix-manual')
|
|
|
|
endif
|
2024-06-25 15:35:47 +02:00
|
|
|
|
2024-07-08 09:47:25 -04:00
|
|
|
# External C wrapper libraries
|
2024-06-25 15:35:47 +02:00
|
|
|
subproject('libutil-c')
|
2024-06-27 10:19:03 -04:00
|
|
|
subproject('libstore-c')
|
|
|
|
subproject('libexpr-c')
|
2024-07-02 15:15:17 -04:00
|
|
|
subproject('libmain-c')
|
2024-06-25 15:35:47 +02:00
|
|
|
|
2024-06-26 22:15:33 -04:00
|
|
|
# Language Bindings
|
2024-07-21 15:03:04 -07:00
|
|
|
if not meson.is_cross_build()
|
|
|
|
subproject('perl')
|
|
|
|
endif
|
2024-06-26 22:15:33 -04:00
|
|
|
|
2024-06-25 15:35:47 +02:00
|
|
|
# Testing
|
2024-06-29 10:31:08 -04:00
|
|
|
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')
|
2024-07-08 16:07:06 -04:00
|
|
|
subproject('nix-functional-tests')
|