Skip to content

Commit

Permalink
add missing header in wscript
Browse files Browse the repository at this point in the history
  • Loading branch information
KUMAZAKI Hiroki committed Mar 13, 2015
1 parent b49e6c8 commit 39ae1b1
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions jubatus/core/storage/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,29 @@ def build(bld):
'lsh_vector.cpp',
'lsh_util.cpp',
'lsh_index_storage.cpp'
]
]
headers = [
'storage_base.hpp',
'storage_type.hpp',
'storage_factory.hpp',
'abstract_column.hpp',
'bit_index_storage.hpp',
'bit_vector.hpp',
'column_table.hpp',
'sparse_matrix_storage.hpp',
'recommender_storage_base.hpp',
'column_type.hpp',
'fixed_size_heap.hpp',
'inverted_index_storage.hpp',
'local_storage.hpp',
'local_storage_mixture.hpp',
]
'lsh_index_storage.hpp',
'lsh_util.hpp',
'lsh_vector.hpp',
'owner.hpp',
'recommender_storage_base.hpp',
'row_deleter.hpp',
'sparse_matrix_storage.hpp',
'storage_base.hpp',
'storage_exception.hpp',
'storage_factory.hpp',
'storage_type.hpp',
]
use = ['jubatus_util', 'MSGPACK']

bld.core_sources.extend(bld.add_prefix(source))
Expand Down

0 comments on commit 39ae1b1

Please sign in to comment.