diff options
Diffstat (limited to 'nihil.ucl')
| -rw-r--r-- | nihil.ucl/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | nihil.ucl/integer.ccm | 2 | ||||
| -rw-r--r-- | nihil.ucl/object_cast.ccm | 3 | ||||
| -rw-r--r-- | nihil.ucl/parser.ccm | 3 | ||||
| -rw-r--r-- | nihil.ucl/type.ccm | 2 |
5 files changed, 7 insertions, 6 deletions
diff --git a/nihil.ucl/CMakeLists.txt b/nihil.ucl/CMakeLists.txt index a4d69e6..477dcf7 100644 --- a/nihil.ucl/CMakeLists.txt +++ b/nihil.ucl/CMakeLists.txt @@ -6,7 +6,6 @@ add_library(nihil.ucl STATIC) target_link_libraries(nihil.ucl PRIVATE nihil.std nihil.core - nihil.util ) target_sources(nihil.ucl @@ -46,7 +45,7 @@ if(NIHIL_TESTS) target_link_libraries(nihil.ucl.test PRIVATE nihil.std - nihil.util + nihil.core nihil.ucl Catch2::Catch2WithMain) diff --git a/nihil.ucl/integer.ccm b/nihil.ucl/integer.ccm index e3cf98d..8734c2d 100644 --- a/nihil.ucl/integer.ccm +++ b/nihil.ucl/integer.ccm @@ -7,7 +7,7 @@ export module nihil.ucl:integer; import nihil.std; import nihil.core; -import nihil.util; + import :object; import :type; diff --git a/nihil.ucl/object_cast.ccm b/nihil.ucl/object_cast.ccm index 04d75a9..793bce9 100644 --- a/nihil.ucl/object_cast.ccm +++ b/nihil.ucl/object_cast.ccm @@ -6,7 +6,8 @@ module; export module nihil.ucl:object_cast; import nihil.std; -import nihil.util; +import nihil.core; + import :type; import :object; import :array; diff --git a/nihil.ucl/parser.ccm b/nihil.ucl/parser.ccm index 306f068..bfd4742 100644 --- a/nihil.ucl/parser.ccm +++ b/nihil.ucl/parser.ccm @@ -6,7 +6,8 @@ module; export module nihil.ucl:parser; import nihil.std; -import nihil.util; +import nihil.core; + import :object; import :map; diff --git a/nihil.ucl/type.ccm b/nihil.ucl/type.ccm index e7843d2..b0403c1 100644 --- a/nihil.ucl/type.ccm +++ b/nihil.ucl/type.ccm @@ -6,7 +6,7 @@ module; export module nihil.ucl:type; import nihil.std; -import nihil.util; +import nihil.core; namespace nihil::ucl { |
