Skip to content

Commit

Permalink
(#24005) iguana: add version 1.0.5
Browse files Browse the repository at this point in the history
* iguana: add version 1.0.5

* support C++17
  • Loading branch information
toge authored May 18, 2024
1 parent 4457fa4 commit 60f714d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions recipes/iguana/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"1.0.5":
url: "https://github.com/qicosmos/iguana/archive/refs/tags/1.0.5.tar.gz"
sha256: "b7a7385c49574a60f9f6bf887c1addbc08f557a0117bf18cf7eec532ac2536b1"
"1.0.4":
url: "https://github.com/qicosmos/iguana/archive/refs/tags/1.0.4.tar.gz"
sha256: "b584cd26e65902a14a3a349ebc480beb7b4502fd5a5ffa3cb7c6102d857958b1"
Expand Down
8 changes: 4 additions & 4 deletions recipes/iguana/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ class IguanaConan(ConanFile):

@property
def _min_cppstd(self):
return 20
return 17

@property
def _compilers_minimum_version(self):
return {
"gcc": "11",
"clang": "12",
"apple-clang": "14",
"gcc": "8",
"clang": "7",
"apple-clang": "12",
"Visual Studio": "16",
"msvc": "192",
}
Expand Down
2 changes: 1 addition & 1 deletion recipes/iguana/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ find_package(iguana REQUIRED CONFIG)

add_executable(${PROJECT_NAME} test_package.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE iguana::iguana)
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_20)
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_17)
2 changes: 2 additions & 0 deletions recipes/iguana/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"1.0.5":
folder: all
"1.0.4":
folder: all
"1.0.3":
Expand Down

0 comments on commit 60f714d

Please sign in to comment.