dangling stuff

This commit is contained in:
Claudius Holeksa 2022-09-17 17:05:19 +02:00
parent b8b461a4c6
commit f0f1c8f2e8
2 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,9 @@
with import <nixpkgs> {};
with import <nixpkgs> {};
stdenv.mkDerivation {
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "forstio";
buildInputs = [ scons gnutls clang_12 clang-tools];
nativeBuildInputs = [ scons gnutls clang_12 clang-tools];
buildPhase = ''
'';

View File

@ -81,6 +81,7 @@ format_iter(env,env.sources + env.driver_sources + env.headers + env.driver_head
env.Alias('format', env.format_actions)
env.Alias('all', ['format', 'library', 'test'])
env.Default('all')
env.Install('$prefix/lib/', [env.library_shared, env.library_static])
env.Install('$prefix/include/forstio/', [env.headers])