From c147ec6aae28d80ff2397cf6acf4ea9c91ee3e4d Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Mon, 15 Jul 2024 16:43:18 +0200 Subject: Compiles project after move --- default.nix | 10 ++++++++++ modules/remote/.nix/derivation.nix | 2 ++ modules/remote/c++/remote.hpp | 4 ++-- modules/remote/c++/remote_loopback.hpp | 3 ++- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/default.nix b/default.nix index f5e33ee..20b00fc 100644 --- a/default.nix +++ b/default.nix @@ -78,6 +78,15 @@ in rec { inherit stdenv; inherit clang-tools; }; + + remote = pkgs.callPackage modules/remote/.nix/derivation.nix { + inherit version; + inherit forstio; + inherit stdenv; + inherit clang-tools; + + build_examples = "false"; + }; remote-sycl = pkgs.callPackage modules/remote-sycl/.nix/derivation.nix { inherit version; @@ -121,6 +130,7 @@ in rec { unstable = pkgs.symlinkJoin { name = "forstio-unstable-${version}"; paths = [ + forstio.remote forstio.remote-sycl forstio.io_codec forstio.thread diff --git a/modules/remote/.nix/derivation.nix b/modules/remote/.nix/derivation.nix index 8f6dd74..85ea4b7 100644 --- a/modules/remote/.nix/derivation.nix +++ b/modules/remote/.nix/derivation.nix @@ -4,6 +4,8 @@ , clang-tools , version , forstio + +, build_examples ? "false" }: let diff --git a/modules/remote/c++/remote.hpp b/modules/remote/c++/remote.hpp index 5803154..fd6f4e6 100644 --- a/modules/remote/c++/remote.hpp +++ b/modules/remote/c++/remote.hpp @@ -3,8 +3,8 @@ #include #include -#include "data.hpp" -#include "interface.hpp" +#include +#include #include diff --git a/modules/remote/c++/remote_loopback.hpp b/modules/remote/c++/remote_loopback.hpp index 2949243..76aab69 100644 --- a/modules/remote/c++/remote_loopback.hpp +++ b/modules/remote/c++/remote_loopback.hpp @@ -2,7 +2,8 @@ #include -#include "interface.hpp" +#include + #include "remote.hpp" #include "transfer_loopback.hpp" -- cgit v1.2.3