From 42ace3b75ab3f00a66442c6a875c48bcb9edd54f Mon Sep 17 00:00:00 2001 From: "Carlos Martin and Ruben S. Montero" Date: Fri, 14 May 2010 15:30:28 +0200 Subject: [PATCH] feature #212: Moved Log system to its own library to be used by the scheduler --- SConstruct | 2 ++ src/nebula/SConstruct | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index cab56ac966..1a4e505a12 100644 --- a/SConstruct +++ b/SConstruct @@ -39,6 +39,7 @@ main_env.Append(CPPPATH=[ # Library dirs main_env.Append(LIBPATH=[ cwd+'/src/common', + cwd+'/src/log', cwd+'/src/sql', cwd+'/src/host', cwd+'/src/mad', @@ -141,6 +142,7 @@ else: build_scripts=[ 'src/client/SConstruct', 'src/sql/SConstruct', + 'src/log/SConstruct', 'src/common/SConstruct', 'src/template/SConstruct', 'src/host/SConstruct', diff --git a/src/nebula/SConstruct b/src/nebula/SConstruct index b8be2c65f9..82fefed6a8 100644 --- a/src/nebula/SConstruct +++ b/src/nebula/SConstruct @@ -24,8 +24,6 @@ lib_name='nebula_core' source_files=[ 'Nebula.cc', 'NebulaTemplate.cc', - 'NebulaLog.cc', - 'Log.cc' ] # Build library @@ -50,6 +48,7 @@ env.Append(LIBS=[ 'nebula_vm', 'nebula_common', 'nebula_sql', + 'nebula_log', 'crypto' ])