diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d5cd86..d6c14da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.24) project(dice-sparse-map - VERSION 0.2.8 + VERSION 0.2.9 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 0303483..d9378c4 100644 --- a/conanfile.py +++ b/conanfile.py @@ -11,9 +11,7 @@ class Recipe(ConanFile): topics = "c++20", "hash-map", "data-structures", "header-only", "hash-table" settings = "os", "compiler", "build_type", "arch" exports_sources = "include/*", "CMakeLists.txt", "cmake/*", "LICENSE*" - package_type = "header-library" generators = "CMakeDeps", "CMakeToolchain" - no_copy_source = True options = { "with_test_deps": [True, False], }