This website requires JavaScript.
Explore
Help
Sign In
vitalif
/
vitastor
Watch
5
Star
4
Fork
You've already forked vitastor
7
Code
Issues
1
Pull Requests
2
Actions
Releases
53
Wiki
Activity
master
vitastor
/
CMakeLists.txt
8 lines
103 B
CMake
Raw
Permalink
Normal View
History
Unescape
Escape
Update cmake min version so it does not complain about deprecation
2023-03-15 01:07:41 +03:00
cmake_minimum_required
(
VERSION
2.8.12
)
Use CMake
2021-02-18 02:07:34 +03:00
project
(
vitastor
)
Release 1.0.0 New features: - Data and metadata checksums! - Metadata checksums are always used with new disk format - Data checksums can be turned on with --data_csum_type crc32c for new OSDs - Checksum block size can be configured - inmemory_metadata now also affects keeping checksums in memory - Linux page cache I/O caching support which can be enabled separately for data, metadata (including checksums) and journal (O_SYNC instead of O_DIRECT) - Details [here](https://git.yourcmc.ru/vitalif/vitastor/src/branch/master/docs/config/layout-osd.en.md#data_csum_type) - Backwards compatibility is preserved, you can use new OSDs with old disks Release also includes bug fixes from [0.9.6](https://git.yourcmc.ru/vitalif/vitastor/releases/tag/v0.9.6). 0.9.6 is moved to "-oldstable" repositories and will be available for some additional time.
2023-07-29 18:11:20 +03:00
set
(
VERSION
"1.0.0"
)
Add SOVERSION
2021-04-20 01:01:32 +03:00
Move C/C++ sources to src subdirectory
2021-02-18 02:14:09 +03:00
add_subdirectory
(
src
)