mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
31 lines
516 B
CMake
31 lines
516 B
CMake
project(succinct)
|
|
|
|
set(SRC
|
|
bit_vector.hpp
|
|
bp_vector.cpp
|
|
bp_vector.hpp
|
|
broadword.hpp
|
|
cartesian_tree.hpp
|
|
darray.hpp
|
|
darray64.hpp
|
|
elias_fano_compressed_list.hpp
|
|
elias_fano_list.hpp
|
|
elias_fano.hpp
|
|
forward_enumerator.hpp
|
|
gamma_bit_vector.hpp
|
|
gamma_vector.hpp
|
|
intrinsics.hpp
|
|
mappable_vector.hpp
|
|
mapper.hpp
|
|
nibble_vector.hpp
|
|
rs_bit_vector.cpp
|
|
rs_bit_vector.hpp
|
|
tables.hpp
|
|
topk_vector.hpp
|
|
util.hpp
|
|
vbyte.hpp
|
|
)
|
|
|
|
# Requires boost include.
|
|
omim_add_library(${PROJECT_NAME} ${SRC})
|