diff --git a/CMakeLists.txt b/CMakeLists.txt index bc97662..1d5cd86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.24) project(dice-sparse-map - VERSION 0.2.7 + VERSION 0.2.8 DESCRIPTION "C++ implementation of a memory efficient hash map and hash set based on [tsl::sparse_map](https://github.com/Tessil/sparse-map). We added support for fancy pointers.") set(POBR_VERSION 1) # Persisted Object Binary Representation Version diff --git a/conanfile.py b/conanfile.py index 79deb76..0303483 100644 --- a/conanfile.py +++ b/conanfile.py @@ -42,10 +42,9 @@ def layout(self): cmake_layout(self) def build(self): - if not self.conf.get("tools.build:skip_test", default=False): - cmake = CMake(self) - cmake.configure() - cmake.build() + cmake = CMake(self) + cmake.configure() + cmake.build() def package_id(self): self.info.clear()