Skip to content

Commit 917ca76

Browse files
authored
merge develop
2 parents bcdbbd3 + 4b8584a commit 917ca76

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.24)
22

33
project(
44
dice-template-library
5-
VERSION 1.8.0
5+
VERSION 1.8.1
66
DESCRIPTION
77
"This template library is a collection of template-oriented code that we, the Data Science Group at UPB, found pretty handy. It contains: `switch_cases` (Use runtime values in compile-time context), `integral_template_tuple` (Create a tuple-like structure that instantiates a template for a range of values), `integral_template_variant` (A wrapper type for `std::variant` guarantees to only contain variants of the form `T<IX>` and `for_{types,values,range}` (Compile time for loops for types, values or ranges))."
88
HOMEPAGE_URL "https://dice-research.org/")

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ add
106106
FetchContent_Declare(
107107
dice-template-library
108108
GIT_REPOSITORY "https://github.com/dice-group/dice-template-library.git"
109-
GIT_TAG v1.8.0
109+
GIT_TAG v1.8.1
110110
GIT_SHALLOW TRUE)
111111
112112
FetchContent_MakeAvailable(dice-template-library)
@@ -125,7 +125,7 @@ target_link_libraries(your_target
125125
### conan
126126

127127
You can use it with [conan](https://conan.io/).
128-
To do so, you need to add `dice-template-library/1.8.0` to the `[requires]` section of your conan file.
128+
To do so, you need to add `dice-template-library/1.8.1` to the `[requires]` section of your conan file.
129129

130130
## Build and Run Tests and Examples
131131

conanfile.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@ def layout(self):
4343
cmake_layout(self)
4444

4545
def build(self):
46-
if not self.conf.get("tools.build:skip_test", default=False):
47-
cmake = CMake(self)
48-
cmake.configure(variables={"WITH_SVECTOR": self.options.with_svector, "WITH_BOOST": self.options.with_boost})
49-
cmake.build()
46+
cmake = CMake(self)
47+
cmake.configure(variables={"WITH_SVECTOR": self.options.with_svector, "WITH_BOOST": self.options.with_boost})
48+
cmake.build()
5049

5150
def package_id(self):
5251
self.info.clear()

0 commit comments

Comments
 (0)