diff options
author | Shea Levy <shea@shealevy.com> | 2018-02-08T16·26-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2018-02-08T17·44-0500 |
commit | 88cd2d41acb994684a3e4ead1b1676019f43b4b6 (patch) | |
tree | 7385aefa5755fd27983f3260b69020acef6de170 /tests/plugins/local.mk | |
parent | f201b7733e22cc236a41093a88cc789239d994bd (diff) |
Add plugins to make Nix more extensible.
All plugins in plugin-files will be dlopened, allowing them to statically construct instances of the various Register* types Nix supports.
Diffstat (limited to 'tests/plugins/local.mk')
-rw-r--r-- | tests/plugins/local.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/plugins/local.mk b/tests/plugins/local.mk new file mode 100644 index 000000000000..a5f19b087c82 --- /dev/null +++ b/tests/plugins/local.mk @@ -0,0 +1,9 @@ +libraries += plugintest + +plugintest_DIR := $(d) + +plugintest_SOURCES := $(d)/plugintest.cc + +plugintest_ALLOW_UNDEFINED := 1 + +plugintest_EXCLUDE_FROM_LIBRARY_LIST := 1 |