mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Merge pull request #9655 from iFreilicht/move-flake-url-name-util
Move url-name utility to libexpr/flake
This commit is contained in:
commit
d65d56fa77
6 changed files with 4 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
||||||
#include "profiles.hh"
|
#include "profiles.hh"
|
||||||
#include "names.hh"
|
#include "names.hh"
|
||||||
#include "url.hh"
|
#include "url.hh"
|
||||||
#include "url-name.hh"
|
#include "flake/url-name.hh"
|
||||||
|
|
||||||
#include <nlohmann/json.hpp>
|
#include <nlohmann/json.hpp>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "url-name.hh"
|
#include "flake/url-name.hh"
|
||||||
#include <gtest/gtest.h>
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
namespace nix {
|
namespace nix {
|
|
@ -16,7 +16,8 @@ endif
|
||||||
|
|
||||||
libexpr-tests_SOURCES := \
|
libexpr-tests_SOURCES := \
|
||||||
$(wildcard $(d)/*.cc) \
|
$(wildcard $(d)/*.cc) \
|
||||||
$(wildcard $(d)/value/*.cc)
|
$(wildcard $(d)/value/*.cc) \
|
||||||
|
$(wildcard $(d)/flake/*.cc)
|
||||||
|
|
||||||
libexpr-tests_EXTRA_INCLUDES = \
|
libexpr-tests_EXTRA_INCLUDES = \
|
||||||
-I tests/unit/libexpr-support \
|
-I tests/unit/libexpr-support \
|
||||||
|
|
Loading…
Reference in a new issue