Skip to content

Commit 0c2dec6

Browse files
-updated figcone_tree to v1.0.1;
-updated figcone_formats dependencies, set figcone_formats version to v0.12.8 -set figcone version to 2.4.10;
1 parent d453aaa commit 0c2dec6

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cmake_minimum_required(VERSION 3.18)
2-
project(figcone VERSION 2.4.9)
2+
project(figcone VERSION 2.4.10)
33
include(GNUInstallDirs)
44
include(external/seal_lake)
55

66
SealLake_IsInstalled(INSTALL_FIGCONE_TREE)
77
SealLake_Import(
8-
figcone_tree 1.0.0
8+
figcone_tree 1.0.1
99
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_tree.git
10-
GIT_TAG v1.0.0
10+
GIT_TAG v1.0.1
1111
)
1212

1313
option(FIGCONE_USE_NAMEOF "Enable automatic registration of struct field names using the nameof library" OFF)
@@ -45,7 +45,7 @@ SealLake_HeaderOnlyLibrary(
4545
LIBRARIES
4646
figcone::figcone_tree
4747
DEPENDENCIES
48-
figcone_tree 1.0.0
48+
figcone_tree 1.0.1
4949
)
5050

5151
if (FIGCONE_USE_NAMEOF)
@@ -62,7 +62,7 @@ if (FIGCONE_USE_ALL OR FIGCONE_USE_JSON OR FIGCONE_USE_YAML OR FIGCONE_USE_TOML
6262
figcone::figcone_formats
6363
)
6464
SealLake_Dependencies(
65-
figcone_formats 0.12.7
65+
figcone_formats 0.12.8
6666
)
6767
endif()
6868

formats/CMakeLists.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project(figcone_formats VERSION 0.12.7)
1+
project(figcone_formats VERSION 0.12.8)
22

33
option(FIGCONE_USE_ALL "Enable all supported config formats" ON)
44
option(FIGCONE_USE_JSON "Enable JSON config format" OFF)
@@ -15,9 +15,9 @@ file(REMOVE_RECURSE ${figcone_SOURCE_DIR}/include/figcone/format)
1515

1616
if(FIGCONE_USE_ALL OR FIGCONE_USE_JSON)
1717
SealLake_Import(
18-
figcone_json 0.12.1
18+
figcone_json 0.12.2
1919
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_json.git
20-
GIT_TAG v0.12.1
20+
GIT_TAG v0.12.2
2121
)
2222
SealLake_Copy(
2323
WILDCARDS ${figcone_json_SOURCE_DIR}/include/figcone_json/*
@@ -27,9 +27,9 @@ endif()
2727

2828
if(FIGCONE_USE_ALL OR FIGCONE_USE_YAML)
2929
SealLake_Import(
30-
figcone_yaml 0.12.2
30+
figcone_yaml 0.12.3
3131
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_yaml.git
32-
GIT_TAG v0.12.2
32+
GIT_TAG v0.12.3
3333
)
3434
SealLake_Copy(
3535
WILDCARDS ${figcone_yaml_SOURCE_DIR}/include/figcone_yaml/*
@@ -39,9 +39,9 @@ endif()
3939

4040
if(FIGCONE_USE_ALL OR FIGCONE_USE_TOML)
4141
SealLake_Import(
42-
figcone_toml 0.12.1
42+
figcone_toml 0.12.2
4343
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_toml.git
44-
GIT_TAG v0.12.1
44+
GIT_TAG v0.12.2
4545
)
4646
SealLake_Copy(
4747
WILDCARDS ${figcone_toml_SOURCE_DIR}/include/figcone_toml/*
@@ -51,9 +51,9 @@ endif()
5151

5252
if(FIGCONE_USE_ALL OR FIGCONE_USE_INI)
5353
SealLake_Import(
54-
figcone_ini 0.12.2
54+
figcone_ini 0.12.3
5555
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_ini.git
56-
GIT_TAG v0.12.2
56+
GIT_TAG v0.12.3
5757
)
5858
SealLake_Copy(
5959
WILDCARDS ${figcone_ini_SOURCE_DIR}/include/figcone_ini/*
@@ -64,9 +64,9 @@ endif()
6464

6565
if(FIGCONE_USE_ALL OR FIGCONE_USE_XML)
6666
SealLake_Import(
67-
figcone_xml 0.12.2
67+
figcone_xml 0.12.3
6868
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_xml.git
69-
GIT_TAG v0.12.2
69+
GIT_TAG v0.12.3
7070
)
7171
SealLake_Copy(
7272
WILDCARDS ${figcone_xml_SOURCE_DIR}/include/figcone_xml/*
@@ -76,9 +76,9 @@ endif()
7676

7777
if(FIGCONE_USE_ALL OR FIGCONE_USE_SHOAL)
7878
SealLake_Import(
79-
figcone_shoal 0.6.1
79+
figcone_shoal 0.6.2
8080
GIT_REPOSITORY https://github.com/kamchatka-volcano/figcone_shoal.git
81-
GIT_TAG v0.6.1
81+
GIT_TAG v0.6.2
8282
)
8383
SealLake_Copy(
8484
WILDCARDS ${figcone_shoal_SOURCE_DIR}/include/figcone_shoal/*
@@ -94,7 +94,7 @@ SealLake_StaticLibrary(
9494
INTERFACE_LIBRARIES
9595
figcone::figcone_tree
9696
DEPENDENCIES
97-
figcone_tree 1.0.0
97+
figcone_tree 1.0.1
9898
)
9999
endif()
100100

0 commit comments

Comments
 (0)