-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* confu_json: add v1.1.0 * confu_json: drop all existing versions * confu_json: use boost/1.85.0 * Update recipes/confu_json/all/conanfile.py * confu_json 1.1.1 * remove unused import --------- Co-authored-by: Abril Rincón Blanco <[email protected]> Co-authored-by: Luis Caro Campos <[email protected]>
- Loading branch information
1 parent
7e056a3
commit df43c18
Showing
6 changed files
with
16 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
sources: | ||
"1.0.0": | ||
url: "https://github.com/werto87/confu_json/archive/refs/tags/v1.0.0.tar.gz" | ||
sha256: "f165172220b440d37a7a8301e490cf791b3b25b0cc3f2a08b355609c5f777db0" | ||
"0.0.10": | ||
url: "https://github.com/werto87/confu_json/archive/refs/tags/v0.0.10.tar.gz" | ||
sha256: "b31aab1bce952c0dc0bfc1f955a7b88be5103350b5a5eee1a4586ccec0e51fc1" | ||
"0.0.9": | ||
url: "https://github.com/werto87/confu_json/archive/refs/tags/v0.0.9.tar.gz" | ||
sha256: "29b2940b939cb04f11fdab4964c86bcb23ac75c588550bf54048e024444d2718" | ||
"0.0.5": | ||
url: "https://github.com/werto87/confu_json/archive/refs/tags/v0.0.5.tar.gz" | ||
sha256: "bc506d4b7836a7689b1c6a2d89bb0c3441f774c8f845fef79d85c71099df5bf9" | ||
"1.1.1": | ||
url: "https://github.com/werto87/confu_json/archive/refs/tags/v1.1.1.tar.gz" | ||
sha256: "6b302c7c4b926db8ff0de65254eb0422eab04385a389715b88297bebf5378c35" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
cmake_minimum_required(VERSION 3.12) | ||
cmake_minimum_required(VERSION 3.15) | ||
project(test_package LANGUAGES CXX) | ||
|
||
find_package(confu_json REQUIRED CONFIG) | ||
|
||
add_executable(${PROJECT_NAME} test_package.cpp) | ||
target_link_libraries(${PROJECT_NAME} PRIVATE confu_json::confu_json) | ||
if(confu_json_VERSION VERSION_LESS "1.0.0") | ||
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_20) | ||
else() | ||
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_17) | ||
endif() | ||
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_20) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
versions: | ||
"1.0.0": | ||
folder: all | ||
"0.0.10": | ||
folder: all | ||
"0.0.9": | ||
folder: all | ||
"0.0.5": | ||
"1.1.1": | ||
folder: all |