1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-08 21:17:43 +03:00

feature #212: Moved Log system to its own library to be used by the scheduler

This commit is contained in:
Carlos Martin and Ruben S. Montero 2010-05-14 15:30:28 +02:00 committed by Ruben S. Montero
parent 60d1dd70ec
commit 42ace3b75a
2 changed files with 3 additions and 2 deletions

View File

@ -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',

View File

@ -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'
])