From 2129689e03e8131ade41e3da1048a4e7ccd9c3a5 Mon Sep 17 00:00:00 2001 From: Arnaud Botella Date: Fri, 6 Feb 2026 09:04:06 +0100 Subject: [PATCH 1/3] fix(2026): happy new year --- CMakeLists.txt | 2 +- COPYLEFT | 4 +- LICENSE | 2 +- README.md | 2 +- cmake/Doxyfile.in | 185 +++++++----------- cmake/OpenGeode-GeosciencesIOConfig.cmake.in | 58 +++--- cmake/version.rc.in | 43 ++-- include/geode/geosciences_io/mesh/common.hpp | 2 +- .../mesh/internal/dem_input.hpp | 2 +- .../mesh/internal/fem_output.hpp | 2 +- .../mesh/internal/geotiff_input.hpp | 2 +- .../mesh/internal/grdecl_input.hpp | 2 +- .../geosciences_io/mesh/internal/pl_input.hpp | 2 +- .../mesh/internal/pl_output.hpp | 2 +- .../mesh/internal/polytiff_input.hpp | 2 +- .../geosciences_io/mesh/internal/ts_input.hpp | 2 +- .../mesh/internal/ts_output.hpp | 2 +- .../geosciences_io/mesh/internal/vo_input.hpp | 2 +- .../geosciences_io/mesh/internal/vs_input.hpp | 2 +- .../mesh/internal/vs_output.hpp | 2 +- .../mesh/internal/well_dat_input.hpp | 2 +- .../mesh/internal/well_dev_input.hpp | 2 +- .../mesh/internal/well_input.hpp | 2 +- .../mesh/internal/well_txt_input.hpp | 2 +- .../geosciences_io/mesh/internal/wl_input.hpp | 2 +- include/geode/geosciences_io/model/common.hpp | 2 +- .../model/helpers/brep_geos_export.hpp | 2 +- .../helpers/structural_model_geos_export.hpp | 2 +- .../model/internal/brep_fem_output.hpp | 2 +- .../model/internal/geos_export.hpp | 2 +- .../internal/horizons_stack_skua_input.hpp | 2 +- .../model/internal/lso_input.hpp | 2 +- .../model/internal/lso_output.hpp | 2 +- .../model/internal/ml_input.hpp | 2 +- .../model/internal/ml_output_brep.hpp | 2 +- .../model/internal/ml_output_impl.hpp | 2 +- .../internal/ml_output_structural_model.hpp | 2 +- .../model/internal/shp_input.hpp | 2 +- .../model/internal/strati_lso_input.hpp | 2 +- src/geode/CMakeLists.txt | 2 +- src/geode/geosciences_io/CMakeLists.txt | 2 +- src/geode/geosciences_io/mesh/CMakeLists.txt | 2 +- src/geode/geosciences_io/mesh/common.cpp | 2 +- src/geode/geosciences_io/mesh/dem_input.cpp | 2 +- src/geode/geosciences_io/mesh/fem_output.cpp | 2 +- .../geosciences_io/mesh/geotiff_input.cpp | 2 +- .../geosciences_io/mesh/gocad_common.cpp | 2 +- .../geosciences_io/mesh/grdecl_input.cpp | 2 +- src/geode/geosciences_io/mesh/pl_input.cpp | 2 +- src/geode/geosciences_io/mesh/pl_output.cpp | 2 +- .../geosciences_io/mesh/polytiff_input.cpp | 2 +- src/geode/geosciences_io/mesh/ts_input.cpp | 2 +- src/geode/geosciences_io/mesh/ts_output.cpp | 2 +- src/geode/geosciences_io/mesh/vo_input.cpp | 2 +- src/geode/geosciences_io/mesh/vs_input.cpp | 2 +- src/geode/geosciences_io/mesh/vs_output.cpp | 2 +- .../geosciences_io/mesh/well_dat_input.cpp | 2 +- .../geosciences_io/mesh/well_dev_input.cpp | 2 +- .../geosciences_io/mesh/well_txt_input.cpp | 2 +- src/geode/geosciences_io/mesh/wl_input.cpp | 2 +- src/geode/geosciences_io/model/CMakeLists.txt | 2 +- src/geode/geosciences_io/model/common.cpp | 2 +- .../model/helpers/brep_geos_export.cpp | 2 +- .../helpers/structural_model_geos_export.cpp | 2 +- .../model/internal/brep_fem_output.cpp | 2 +- .../model/internal/geos_export.cpp | 2 +- .../model/internal/gocad_common.cpp | 2 +- .../internal/horizons_stack_skua_input.cpp | 2 +- .../model/internal/lso_input.cpp | 2 +- .../model/internal/lso_output.cpp | 2 +- .../model/internal/ml_input.cpp | 2 +- .../model/internal/ml_output_brep.cpp | 2 +- .../internal/ml_output_structural_model.cpp | 2 +- .../model/internal/shp_input.cpp | 2 +- .../model/internal/strati_lso_input.cpp | 2 +- tests/CMakeLists.txt | 2 +- tests/mesh/CMakeLists.txt | 2 +- tests/mesh/test-dem.cpp | 2 +- tests/mesh/test-geotiff.cpp | 2 +- tests/mesh/test-grdecl.cpp | 2 +- tests/mesh/test-pl.cpp | 2 +- tests/mesh/test-polytiff.cpp | 2 +- tests/mesh/test-solid-fem-output.cpp | 2 +- tests/mesh/test-ts.cpp | 2 +- tests/mesh/test-vo.cpp | 2 +- tests/mesh/test-vs.cpp | 2 +- tests/mesh/test-well-dat.cpp | 2 +- tests/mesh/test-well-dev.cpp | 2 +- tests/mesh/test-well-txt.cpp | 2 +- tests/mesh/test-wl.cpp | 2 +- tests/model/CMakeLists.txt | 2 +- tests/model/test-brep-fem-output.cpp | 2 +- tests/model/test-geos.cpp | 2 +- tests/model/test-lso.cpp | 2 +- tests/model/test-ml.cpp | 2 +- tests/model/test-shp.cpp | 2 +- tests/model/test-skua-horizons-stack.cpp | 2 +- tests/model/test-strati-lso-input.cpp | 2 +- tests/tests_config.hpp.in | 2 +- 99 files changed, 219 insertions(+), 261 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a0a3c5d..e9b98b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/COPYLEFT b/COPYLEFT index 8e4ed86..42cb1b4 100644 --- a/COPYLEFT +++ b/COPYLEFT @@ -1,7 +1,7 @@ ## Dependencies OpenGeode: MIT -Copyright (c) 2019 - 2025 Geode-solutions +Copyright (c) 2019 - 2026 Geode-solutions OpenGeode-Geosciences: MIT -Copyright (c) 2019 - 2025 Geode-solutions +Copyright (c) 2019 - 2026 Geode-solutions diff --git a/LICENSE b/LICENSE index 08f58b9..3b20509 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 - 2025 Geode-solutions +Copyright (c) 2019 - 2026 Geode-solutions Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 0a16f5d..f0e3f8c 100644 --- a/README.md +++ b/README.md @@ -56,4 +56,4 @@ Detailed changes for each release are documented in the [release notes](https:// [MIT](https://opensource.org/licenses/MIT) -Copyright (c) 2019 - 2025, Geode-solutions +Copyright (c) 2019 - 2026, Geode-solutions diff --git a/cmake/Doxyfile.in b/cmake/Doxyfile.in index bd05bb3..11e5ce7 100644 --- a/cmake/Doxyfile.in +++ b/cmake/Doxyfile.in @@ -1,118 +1,83 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +#Copyright( c ) 2019 - 2026 Geode - solutions # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +#Permission is hereby granted, free of charge, to any person obtaining a copy +#of this software and associated documentation files( the "Software" ), to deal +#in the Software without restriction, including without limitation the rights +#to use, copy, modify, merge, publish, distribute, sublicense, and/ or sell +#copies of the Software, and to permit persons to whom the Software is +#furnished to do so, subject to the following conditions: # -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. +#The above copyright notice and this permission notice shall be included in +#all copies or substantial portions of the Software. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. +#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE +#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +#SOFTWARE. -# Doxyfile 1.6.1 +#Doxyfile 1.6.1 -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- -DOXYFILE_ENCODING = UTF-8 -PROJECT_NAME = @CMAKE_PROJECT_NAME@ -PROJECT_NUMBER = -OUTPUT_DIRECTORY = @CMAKE_BINARY_DIR@/doc -CREATE_SUBDIRS = NO -OUTPUT_LANGUAGE = English -BRIEF_MEMBER_DESC = YES -REPEAT_BRIEF = YES -ABBREVIATE_BRIEF = -ALWAYS_DETAILED_SEC = NO -INLINE_INHERITED_MEMB = NO -FULL_PATH_NAMES = YES -STRIP_FROM_PATH = -STRIP_FROM_INC_PATH = -SHORT_NAMES = NO -JAVADOC_AUTOBRIEF = NO -QT_AUTOBRIEF = NO -MULTILINE_CPP_IS_BRIEF = NO -INHERIT_DOCS = YES -SEPARATE_MEMBER_PAGES = NO -TAB_SIZE = 4 -ALIASES = -OPTIMIZE_OUTPUT_FOR_C = NO -OPTIMIZE_OUTPUT_JAVA = NO -OPTIMIZE_FOR_FORTRAN = NO -OPTIMIZE_OUTPUT_VHDL = NO -EXTENSION_MAPPING = -BUILTIN_STL_SUPPORT = NO -CPP_CLI_SUPPORT = NO -SIP_SUPPORT = NO -IDL_PROPERTY_SUPPORT = YES -DISTRIBUTE_GROUP_DOC = NO -SUBGROUPING = YES -TYPEDEF_HIDES_STRUCT = NO -SYMBOL_CACHE_SIZE = 0 -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- -EXTRACT_ALL = YES -EXTRACT_PRIVATE = NO -EXTRACT_STATIC = NO -EXTRACT_LOCAL_CLASSES = YES -EXTRACT_LOCAL_METHODS = NO -EXTRACT_ANON_NSPACES = NO -HIDE_UNDOC_MEMBERS = NO -HIDE_UNDOC_CLASSES = NO -HIDE_FRIEND_COMPOUNDS = NO -HIDE_IN_BODY_DOCS = NO -INTERNAL_DOCS = NO -CASE_SENSE_NAMES = NO -HIDE_SCOPE_NAMES = NO -SHOW_INCLUDE_FILES = YES -INLINE_INFO = YES -SORT_MEMBER_DOCS = YES -SORT_BRIEF_DOCS = NO -SORT_MEMBERS_CTORS_1ST = NO -SORT_GROUP_NAMES = NO -SORT_BY_SCOPE_NAME = NO -GENERATE_TODOLIST = YES -GENERATE_TESTLIST = YES -GENERATE_BUGLIST = YES -GENERATE_DEPRECATEDLIST= YES -ENABLED_SECTIONS = -MAX_INITIALIZER_LINES = 30 -SHOW_USED_FILES = NO -SHOW_DIRECTORIES = NO -SHOW_FILES = NO -SHOW_NAMESPACES = YES -FILE_VERSION_FILTER = -LAYOUT_FILE = -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- -QUIET = NO -WARNINGS = YES -WARN_IF_UNDOCUMENTED = NO -WARN_IF_DOC_ERROR = YES -WARN_NO_PARAMDOC = NO -WARN_FORMAT = "$file:$line: $text" -WARN_LOGFILE = -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- -INPUT = @CMAKE_SOURCE_DIR@/include @CMAKE_SOURCE_DIR@/docs -INPUT_ENCODING = UTF-8 -FILE_PATTERNS = *.h *.dox -RECURSIVE = YES -EXCLUDE = -EXCLUDE_SYMLINKS = NO -EXCLUDE_PATTERNS = @CMAKE_SOURCE_DIR@/include/*/private +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - +#Project related configuration options +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - +DOXYFILE_ENCODING = UTF - 8 PROJECT_NAME = @CMAKE_PROJECT_NAME @PROJECT_NUMBER = + OUTPUT_DIRECTORY = @CMAKE_BINARY_DIR + @ / doc CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English + BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES ABBREVIATE_BRIEF = ALWAYS_DETAILED_SEC = + NO INLINE_INHERITED_MEMB = NO FULL_PATH_NAMES = YES STRIP_FROM_PATH = + STRIP_FROM_INC_PATH = SHORT_NAMES = NO JAVADOC_AUTOBRIEF = NO + QT_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO INHERIT_DOCS = + YES SEPARATE_MEMBER_PAGES = NO TAB_SIZE = 4 ALIASES = + OPTIMIZE_OUTPUT_FOR_C = NO OPTIMIZE_OUTPUT_JAVA = NO + OPTIMIZE_FOR_FORTRAN = NO OPTIMIZE_OUTPUT_VHDL = + NO EXTENSION_MAPPING = BUILTIN_STL_SUPPORT = + NO CPP_CLI_SUPPORT = NO SIP_SUPPORT = + NO IDL_PROPERTY_SUPPORT = + YES DISTRIBUTE_GROUP_DOC = + NO SUBGROUPING = YES + TYPEDEF_HIDES_STRUCT = NO + SYMBOL_CACHE_SIZE = + 0 +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - +#Build related configuration options +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + EXTRACT_ALL = YES EXTRACT_PRIVATE = NO EXTRACT_STATIC = NO EXTRACT_LOCAL_CLASSES = + YES EXTRACT_LOCAL_METHODS = NO EXTRACT_ANON_NSPACES = NO HIDE_UNDOC_MEMBERS = + NO HIDE_UNDOC_CLASSES = NO HIDE_FRIEND_COMPOUNDS = NO HIDE_IN_BODY_DOCS = + NO INTERNAL_DOCS = NO CASE_SENSE_NAMES = NO HIDE_SCOPE_NAMES = NO + SHOW_INCLUDE_FILES = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES + SORT_BRIEF_DOCS = NO SORT_MEMBERS_CTORS_1ST = NO SORT_GROUP_NAMES = NO SORT_BY_SCOPE_NAME = + NO GENERATE_TODOLIST = YES GENERATE_TESTLIST = YES + GENERATE_BUGLIST = YES GENERATE_DEPRECATEDLIST = YES + ENABLED_SECTIONS = MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = + NO SHOW_DIRECTORIES = NO SHOW_FILES = NO + SHOW_NAMESPACES = YES FILE_VERSION_FILTER = LAYOUT_FILE = +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - +#configuration options related to warning and progress messages +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + QUIET = + NO WARNINGS = YES WARN_IF_UNDOCUMENTED = + NO WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO WARN_FORMAT = + "$file:$line: " + "$tex" + "t" WARN_LOGFILE = +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - +#configuration options related to the input files +#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + INPUT = + @CMAKE_SOURCE_DIR + @ / include @CMAKE_SOURCE_DIR @ / docs INPUT_ENCODING = + UTF + - 8 FILE_PATTERNS = + *.h *.dox + RECURSIVE = YES + EXCLUDE = EXCLUDE_SYMLINKS = + NO EXCLUDE_PATTERNS = + @CMAKE_SOURCE_DIR + @ / include /*/private EXCLUDE_SYMBOLS = EXAMPLE_PATH = EXAMPLE_PATTERNS = diff --git a/cmake/OpenGeode-GeosciencesIOConfig.cmake.in b/cmake/OpenGeode-GeosciencesIOConfig.cmake.in index 99561cf..075ea9e 100644 --- a/cmake/OpenGeode-GeosciencesIOConfig.cmake.in +++ b/cmake/OpenGeode-GeosciencesIOConfig.cmake.in @@ -1,36 +1,36 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +#Copyright( c ) 2019 - 2026 Geode - solutions # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: +#Permission is hereby granted, free of charge, to any person obtaining a copy +#of this software and associated documentation files( the "Software" ), to deal +#in the Software without restriction, including without limitation the rights +#to use, copy, modify, merge, publish, distribute, sublicense, and/ or sell +#copies of the Software, and to permit persons to whom the Software is +#furnished to do so, subject to the following conditions: # -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. +#The above copyright notice and this permission notice shall be included in +#all copies or substantial portions of the Software. # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. +#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE +#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +#SOFTWARE. -@PACKAGE_INIT@ +@PACKAGE_INIT @ -include(CMakeFindDependencyMacro) -find_dependency(OpenGeode CONFIG) + include( CMakeFindDependencyMacro ) find_dependency( OpenGeode CONFIG ) -# Load information for each target -include(${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@_mesh_target.cmake) -include(${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@_model_target.cmake) +#Load information for each target + include( + ${ CMAKE_CURRENT_LIST_DIR } / @PROJECT_NAME @_mesh_target.cmake ) + include( ${ CMAKE_CURRENT_LIST_DIR } / + @PROJECT_NAME @_model_target.cmake ) -get_target_property(library_type @PROJECT_NAME@::mesh TYPE) -if(library_type STREQUAL "STATIC_LIBRARY") - find_dependency(OpenGeode-IO CONFIG) - find_dependency(OpenGeode-Geosciences CONFIG) - find_dependency(GDAL CONFIG) - find_dependency(pugixml CONFIG) -endif() \ No newline at end of file + get_target_property( library_type @PROJECT_NAME + @ ::mesh TYPE ) if( library_type STREQUAL "STATIC_LIBRARY" ) + find_dependency( OpenGeode - IO CONFIG ) + find_dependency( OpenGeode - Geosciences CONFIG ) + find_dependency( GDAL CONFIG ) + find_dependency( pugixml CONFIG ) endif() \ No newline at end of file diff --git a/cmake/version.rc.in b/cmake/version.rc.in index f318639..1e413e8 100644 --- a/cmake/version.rc.in +++ b/cmake/version.rc.in @@ -1,26 +1,19 @@ -#define RC_VERSION 1,0,0,0 +#define RC_VERSION 1, 0, 0, 0 -1 VERSIONINFO -FILEVERSION RC_VERSION -PRODUCTVERSION RC_VERSION -BEGIN - BLOCK "VarFileInfo" - BEGIN - // English language (0x409) and the Windows Unicode codepage (1200) - VALUE "Translation", 0x409, 1200 - END - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "FileDescription", "Compiled with @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@\0" - VALUE "ProductVersion", "@CPACK_PACKAGE_VERSION@\0" - VALUE "FileVersion", "@CPACK_PACKAGE_VERSION@\0" - VALUE "InternalName", "@PROJECT_LIB_NAME@\0" - VALUE "ProductName", "@PROJECT_LIB_NAME@\0" - VALUE "CompanyName", "Geode-solutions SAS\0" - VALUE "LegalCopyright", "Copyright 2019 - 2025 Geode-solutions SAS. All rights reserved.\0" - VALUE "Commentaires", "https://geode-solutions.com\0" - END - END -END +1 VERSIONINFO FILEVERSION RC_VERSION PRODUCTVERSION RC_VERSION BEGIN BLOCK + "VarFileInfo" BEGIN + // English language (0x409) and the Windows Unicode codepage (1200) + VALUE "Translation", + 0x409, + 1200 END BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE + "FileDescription", + "Compiled with @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@\0" VALUE + "ProductVersion", + "@CPACK_PACKAGE_VERSION@\0" VALUE "FileVersion", + "@CPACK_PACKAGE_VERSION@\0" VALUE "InternalName", + "@PROJECT_LIB_NAME@\0" VALUE "ProductName", + "@PROJECT_LIB_NAME@\0" VALUE "CompanyName", + "Geode-solutions SAS\0" VALUE "LegalCopyright", + "Copyright 2019 - 2026 Geode-solutions SAS. All rights reserved.\0" VALUE + "Commentaires", + "https://geode-solutions.com\0" END END END diff --git a/include/geode/geosciences_io/mesh/common.hpp b/include/geode/geosciences_io/mesh/common.hpp index 36c5324..76c1ff9 100644 --- a/include/geode/geosciences_io/mesh/common.hpp +++ b/include/geode/geosciences_io/mesh/common.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/dem_input.hpp b/include/geode/geosciences_io/mesh/internal/dem_input.hpp index a38e043..0f7a755 100644 --- a/include/geode/geosciences_io/mesh/internal/dem_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/dem_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/fem_output.hpp b/include/geode/geosciences_io/mesh/internal/fem_output.hpp index 496943a..a41cdf1 100644 --- a/include/geode/geosciences_io/mesh/internal/fem_output.hpp +++ b/include/geode/geosciences_io/mesh/internal/fem_output.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/geotiff_input.hpp b/include/geode/geosciences_io/mesh/internal/geotiff_input.hpp index 8a0085f..ee800c2 100644 --- a/include/geode/geosciences_io/mesh/internal/geotiff_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/geotiff_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/grdecl_input.hpp b/include/geode/geosciences_io/mesh/internal/grdecl_input.hpp index 42cbf19..bf82e6b 100644 --- a/include/geode/geosciences_io/mesh/internal/grdecl_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/grdecl_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/pl_input.hpp b/include/geode/geosciences_io/mesh/internal/pl_input.hpp index 79840a7..6e62372 100644 --- a/include/geode/geosciences_io/mesh/internal/pl_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/pl_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/pl_output.hpp b/include/geode/geosciences_io/mesh/internal/pl_output.hpp index dfefcb8..abcb69e 100644 --- a/include/geode/geosciences_io/mesh/internal/pl_output.hpp +++ b/include/geode/geosciences_io/mesh/internal/pl_output.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/polytiff_input.hpp b/include/geode/geosciences_io/mesh/internal/polytiff_input.hpp index 80e5558..ef985fe 100644 --- a/include/geode/geosciences_io/mesh/internal/polytiff_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/polytiff_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/ts_input.hpp b/include/geode/geosciences_io/mesh/internal/ts_input.hpp index e334d1b..9c62b33 100644 --- a/include/geode/geosciences_io/mesh/internal/ts_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/ts_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/ts_output.hpp b/include/geode/geosciences_io/mesh/internal/ts_output.hpp index 49d0579..3c0775d 100644 --- a/include/geode/geosciences_io/mesh/internal/ts_output.hpp +++ b/include/geode/geosciences_io/mesh/internal/ts_output.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/vo_input.hpp b/include/geode/geosciences_io/mesh/internal/vo_input.hpp index fe049a7..8858751 100644 --- a/include/geode/geosciences_io/mesh/internal/vo_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/vo_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/vs_input.hpp b/include/geode/geosciences_io/mesh/internal/vs_input.hpp index 71bb67f..331656d 100644 --- a/include/geode/geosciences_io/mesh/internal/vs_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/vs_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/vs_output.hpp b/include/geode/geosciences_io/mesh/internal/vs_output.hpp index fc77824..b2a23f3 100644 --- a/include/geode/geosciences_io/mesh/internal/vs_output.hpp +++ b/include/geode/geosciences_io/mesh/internal/vs_output.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/well_dat_input.hpp b/include/geode/geosciences_io/mesh/internal/well_dat_input.hpp index 70d006b..6fd8413 100644 --- a/include/geode/geosciences_io/mesh/internal/well_dat_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/well_dat_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/well_dev_input.hpp b/include/geode/geosciences_io/mesh/internal/well_dev_input.hpp index 0f7c310..f92c3b5 100644 --- a/include/geode/geosciences_io/mesh/internal/well_dev_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/well_dev_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/well_input.hpp b/include/geode/geosciences_io/mesh/internal/well_input.hpp index 60fd7d8..f39a329 100644 --- a/include/geode/geosciences_io/mesh/internal/well_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/well_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/well_txt_input.hpp b/include/geode/geosciences_io/mesh/internal/well_txt_input.hpp index b0b4a25..37ec30c 100644 --- a/include/geode/geosciences_io/mesh/internal/well_txt_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/well_txt_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/mesh/internal/wl_input.hpp b/include/geode/geosciences_io/mesh/internal/wl_input.hpp index ad71bc6..ad1fc0f 100644 --- a/include/geode/geosciences_io/mesh/internal/wl_input.hpp +++ b/include/geode/geosciences_io/mesh/internal/wl_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/common.hpp b/include/geode/geosciences_io/model/common.hpp index 63f6803..efab7a6 100644 --- a/include/geode/geosciences_io/model/common.hpp +++ b/include/geode/geosciences_io/model/common.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/helpers/brep_geos_export.hpp b/include/geode/geosciences_io/model/helpers/brep_geos_export.hpp index 3b647be..3145e7b 100644 --- a/include/geode/geosciences_io/model/helpers/brep_geos_export.hpp +++ b/include/geode/geosciences_io/model/helpers/brep_geos_export.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/helpers/structural_model_geos_export.hpp b/include/geode/geosciences_io/model/helpers/structural_model_geos_export.hpp index 1c30b6f..c15d7d9 100644 --- a/include/geode/geosciences_io/model/helpers/structural_model_geos_export.hpp +++ b/include/geode/geosciences_io/model/helpers/structural_model_geos_export.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/brep_fem_output.hpp b/include/geode/geosciences_io/model/internal/brep_fem_output.hpp index 6bde577..d46b65f 100644 --- a/include/geode/geosciences_io/model/internal/brep_fem_output.hpp +++ b/include/geode/geosciences_io/model/internal/brep_fem_output.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/geos_export.hpp b/include/geode/geosciences_io/model/internal/geos_export.hpp index a8e3608..b544f9d 100644 --- a/include/geode/geosciences_io/model/internal/geos_export.hpp +++ b/include/geode/geosciences_io/model/internal/geos_export.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/horizons_stack_skua_input.hpp b/include/geode/geosciences_io/model/internal/horizons_stack_skua_input.hpp index f361728..5ff52a2 100644 --- a/include/geode/geosciences_io/model/internal/horizons_stack_skua_input.hpp +++ b/include/geode/geosciences_io/model/internal/horizons_stack_skua_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/lso_input.hpp b/include/geode/geosciences_io/model/internal/lso_input.hpp index 618e882..469ae89 100644 --- a/include/geode/geosciences_io/model/internal/lso_input.hpp +++ b/include/geode/geosciences_io/model/internal/lso_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/lso_output.hpp b/include/geode/geosciences_io/model/internal/lso_output.hpp index 0f9c11b..40dd743 100644 --- a/include/geode/geosciences_io/model/internal/lso_output.hpp +++ b/include/geode/geosciences_io/model/internal/lso_output.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/ml_input.hpp b/include/geode/geosciences_io/model/internal/ml_input.hpp index a5b48cc..59f8065 100644 --- a/include/geode/geosciences_io/model/internal/ml_input.hpp +++ b/include/geode/geosciences_io/model/internal/ml_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/ml_output_brep.hpp b/include/geode/geosciences_io/model/internal/ml_output_brep.hpp index 3af965e..5688ea4 100644 --- a/include/geode/geosciences_io/model/internal/ml_output_brep.hpp +++ b/include/geode/geosciences_io/model/internal/ml_output_brep.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/ml_output_impl.hpp b/include/geode/geosciences_io/model/internal/ml_output_impl.hpp index 9aa33f8..6a8299d 100644 --- a/include/geode/geosciences_io/model/internal/ml_output_impl.hpp +++ b/include/geode/geosciences_io/model/internal/ml_output_impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/ml_output_structural_model.hpp b/include/geode/geosciences_io/model/internal/ml_output_structural_model.hpp index da61714..d2cc392 100644 --- a/include/geode/geosciences_io/model/internal/ml_output_structural_model.hpp +++ b/include/geode/geosciences_io/model/internal/ml_output_structural_model.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/shp_input.hpp b/include/geode/geosciences_io/model/internal/shp_input.hpp index a2e588f..0fdea38 100644 --- a/include/geode/geosciences_io/model/internal/shp_input.hpp +++ b/include/geode/geosciences_io/model/internal/shp_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/include/geode/geosciences_io/model/internal/strati_lso_input.hpp b/include/geode/geosciences_io/model/internal/strati_lso_input.hpp index ed32d02..add060d 100644 --- a/include/geode/geosciences_io/model/internal/strati_lso_input.hpp +++ b/include/geode/geosciences_io/model/internal/strati_lso_input.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved. + * Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved. */ #pragma once diff --git a/src/geode/CMakeLists.txt b/src/geode/CMakeLists.txt index 5a0825b..423411b 100644 --- a/src/geode/CMakeLists.txt +++ b/src/geode/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/CMakeLists.txt b/src/geode/geosciences_io/CMakeLists.txt index fd4609c..568cce4 100644 --- a/src/geode/geosciences_io/CMakeLists.txt +++ b/src/geode/geosciences_io/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/CMakeLists.txt b/src/geode/geosciences_io/mesh/CMakeLists.txt index 9fcbd06..b743c27 100755 --- a/src/geode/geosciences_io/mesh/CMakeLists.txt +++ b/src/geode/geosciences_io/mesh/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/common.cpp b/src/geode/geosciences_io/mesh/common.cpp index 39b710b..1d18162 100644 --- a/src/geode/geosciences_io/mesh/common.cpp +++ b/src/geode/geosciences_io/mesh/common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/dem_input.cpp b/src/geode/geosciences_io/mesh/dem_input.cpp index 1389fb8..cc24d5f 100644 --- a/src/geode/geosciences_io/mesh/dem_input.cpp +++ b/src/geode/geosciences_io/mesh/dem_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/fem_output.cpp b/src/geode/geosciences_io/mesh/fem_output.cpp index 8c3f8d8..5c3ec72 100644 --- a/src/geode/geosciences_io/mesh/fem_output.cpp +++ b/src/geode/geosciences_io/mesh/fem_output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/geotiff_input.cpp b/src/geode/geosciences_io/mesh/geotiff_input.cpp index 8cf35d9..62692ba 100644 --- a/src/geode/geosciences_io/mesh/geotiff_input.cpp +++ b/src/geode/geosciences_io/mesh/geotiff_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/gocad_common.cpp b/src/geode/geosciences_io/mesh/gocad_common.cpp index 4505fc3..8b58c98 100644 --- a/src/geode/geosciences_io/mesh/gocad_common.cpp +++ b/src/geode/geosciences_io/mesh/gocad_common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/grdecl_input.cpp b/src/geode/geosciences_io/mesh/grdecl_input.cpp index b45090e..5c965d9 100644 --- a/src/geode/geosciences_io/mesh/grdecl_input.cpp +++ b/src/geode/geosciences_io/mesh/grdecl_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/pl_input.cpp b/src/geode/geosciences_io/mesh/pl_input.cpp index 5d86ff2..bb5ddb2 100644 --- a/src/geode/geosciences_io/mesh/pl_input.cpp +++ b/src/geode/geosciences_io/mesh/pl_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/pl_output.cpp b/src/geode/geosciences_io/mesh/pl_output.cpp index 4175ec3..8cd4bd1 100644 --- a/src/geode/geosciences_io/mesh/pl_output.cpp +++ b/src/geode/geosciences_io/mesh/pl_output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/polytiff_input.cpp b/src/geode/geosciences_io/mesh/polytiff_input.cpp index caad4e8..e862fc4 100644 --- a/src/geode/geosciences_io/mesh/polytiff_input.cpp +++ b/src/geode/geosciences_io/mesh/polytiff_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/ts_input.cpp b/src/geode/geosciences_io/mesh/ts_input.cpp index c3994ad..289f40a 100644 --- a/src/geode/geosciences_io/mesh/ts_input.cpp +++ b/src/geode/geosciences_io/mesh/ts_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/ts_output.cpp b/src/geode/geosciences_io/mesh/ts_output.cpp index 45690a2..df19653 100644 --- a/src/geode/geosciences_io/mesh/ts_output.cpp +++ b/src/geode/geosciences_io/mesh/ts_output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/vo_input.cpp b/src/geode/geosciences_io/mesh/vo_input.cpp index b17291e..b91aff7 100644 --- a/src/geode/geosciences_io/mesh/vo_input.cpp +++ b/src/geode/geosciences_io/mesh/vo_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/vs_input.cpp b/src/geode/geosciences_io/mesh/vs_input.cpp index 6038f37..0fb689e 100644 --- a/src/geode/geosciences_io/mesh/vs_input.cpp +++ b/src/geode/geosciences_io/mesh/vs_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/vs_output.cpp b/src/geode/geosciences_io/mesh/vs_output.cpp index 2b927ac..0548f70 100644 --- a/src/geode/geosciences_io/mesh/vs_output.cpp +++ b/src/geode/geosciences_io/mesh/vs_output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/well_dat_input.cpp b/src/geode/geosciences_io/mesh/well_dat_input.cpp index 7da3552..8f22f1d 100644 --- a/src/geode/geosciences_io/mesh/well_dat_input.cpp +++ b/src/geode/geosciences_io/mesh/well_dat_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/well_dev_input.cpp b/src/geode/geosciences_io/mesh/well_dev_input.cpp index c8e73a1..0eea787 100644 --- a/src/geode/geosciences_io/mesh/well_dev_input.cpp +++ b/src/geode/geosciences_io/mesh/well_dev_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/well_txt_input.cpp b/src/geode/geosciences_io/mesh/well_txt_input.cpp index 7281f2c..bb553b5 100644 --- a/src/geode/geosciences_io/mesh/well_txt_input.cpp +++ b/src/geode/geosciences_io/mesh/well_txt_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/mesh/wl_input.cpp b/src/geode/geosciences_io/mesh/wl_input.cpp index 987dc70..122fec6 100644 --- a/src/geode/geosciences_io/mesh/wl_input.cpp +++ b/src/geode/geosciences_io/mesh/wl_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/CMakeLists.txt b/src/geode/geosciences_io/model/CMakeLists.txt index 5eadf87..a86fb41 100755 --- a/src/geode/geosciences_io/model/CMakeLists.txt +++ b/src/geode/geosciences_io/model/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/common.cpp b/src/geode/geosciences_io/model/common.cpp index 36c7f10..0bf86a8 100644 --- a/src/geode/geosciences_io/model/common.cpp +++ b/src/geode/geosciences_io/model/common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/helpers/brep_geos_export.cpp b/src/geode/geosciences_io/model/helpers/brep_geos_export.cpp index dff0b9c..2823052 100644 --- a/src/geode/geosciences_io/model/helpers/brep_geos_export.cpp +++ b/src/geode/geosciences_io/model/helpers/brep_geos_export.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/helpers/structural_model_geos_export.cpp b/src/geode/geosciences_io/model/helpers/structural_model_geos_export.cpp index 65c6d7e..3e62b1f 100644 --- a/src/geode/geosciences_io/model/helpers/structural_model_geos_export.cpp +++ b/src/geode/geosciences_io/model/helpers/structural_model_geos_export.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/brep_fem_output.cpp b/src/geode/geosciences_io/model/internal/brep_fem_output.cpp index b0a3c6f..5144ee2 100644 --- a/src/geode/geosciences_io/model/internal/brep_fem_output.cpp +++ b/src/geode/geosciences_io/model/internal/brep_fem_output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/geos_export.cpp b/src/geode/geosciences_io/model/internal/geos_export.cpp index 87a9d25..176b578 100644 --- a/src/geode/geosciences_io/model/internal/geos_export.cpp +++ b/src/geode/geosciences_io/model/internal/geos_export.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/gocad_common.cpp b/src/geode/geosciences_io/model/internal/gocad_common.cpp index fe6357f..5e14097 100644 --- a/src/geode/geosciences_io/model/internal/gocad_common.cpp +++ b/src/geode/geosciences_io/model/internal/gocad_common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/horizons_stack_skua_input.cpp b/src/geode/geosciences_io/model/internal/horizons_stack_skua_input.cpp index c1e3ca4..bb458d5 100644 --- a/src/geode/geosciences_io/model/internal/horizons_stack_skua_input.cpp +++ b/src/geode/geosciences_io/model/internal/horizons_stack_skua_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/lso_input.cpp b/src/geode/geosciences_io/model/internal/lso_input.cpp index 07742fc..ed71e0b 100644 --- a/src/geode/geosciences_io/model/internal/lso_input.cpp +++ b/src/geode/geosciences_io/model/internal/lso_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/lso_output.cpp b/src/geode/geosciences_io/model/internal/lso_output.cpp index 2217ee2..a02fcbe 100644 --- a/src/geode/geosciences_io/model/internal/lso_output.cpp +++ b/src/geode/geosciences_io/model/internal/lso_output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/ml_input.cpp b/src/geode/geosciences_io/model/internal/ml_input.cpp index 5a51ea4..fa01ada 100644 --- a/src/geode/geosciences_io/model/internal/ml_input.cpp +++ b/src/geode/geosciences_io/model/internal/ml_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/ml_output_brep.cpp b/src/geode/geosciences_io/model/internal/ml_output_brep.cpp index 2bcb47b..227eec0 100644 --- a/src/geode/geosciences_io/model/internal/ml_output_brep.cpp +++ b/src/geode/geosciences_io/model/internal/ml_output_brep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/ml_output_structural_model.cpp b/src/geode/geosciences_io/model/internal/ml_output_structural_model.cpp index 763a17c..b9ec00d 100644 --- a/src/geode/geosciences_io/model/internal/ml_output_structural_model.cpp +++ b/src/geode/geosciences_io/model/internal/ml_output_structural_model.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/shp_input.cpp b/src/geode/geosciences_io/model/internal/shp_input.cpp index e830aa2..c9cc846 100644 --- a/src/geode/geosciences_io/model/internal/shp_input.cpp +++ b/src/geode/geosciences_io/model/internal/shp_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/geode/geosciences_io/model/internal/strati_lso_input.cpp b/src/geode/geosciences_io/model/internal/strati_lso_input.cpp index a353cd7..f0ca9e9 100644 --- a/src/geode/geosciences_io/model/internal/strati_lso_input.cpp +++ b/src/geode/geosciences_io/model/internal/strati_lso_input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved. + * Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved. */ #include diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3fdbbf4..6f79331 100755 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/CMakeLists.txt b/tests/mesh/CMakeLists.txt index 0c066eb..dd0e5e6 100755 --- a/tests/mesh/CMakeLists.txt +++ b/tests/mesh/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-dem.cpp b/tests/mesh/test-dem.cpp index 0e7be6a..0667c28 100644 --- a/tests/mesh/test-dem.cpp +++ b/tests/mesh/test-dem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-geotiff.cpp b/tests/mesh/test-geotiff.cpp index dd163e6..cba28a6 100644 --- a/tests/mesh/test-geotiff.cpp +++ b/tests/mesh/test-geotiff.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-grdecl.cpp b/tests/mesh/test-grdecl.cpp index d9efcae..3c86c2b 100644 --- a/tests/mesh/test-grdecl.cpp +++ b/tests/mesh/test-grdecl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-pl.cpp b/tests/mesh/test-pl.cpp index 1a4e2a3..636adf2 100644 --- a/tests/mesh/test-pl.cpp +++ b/tests/mesh/test-pl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-polytiff.cpp b/tests/mesh/test-polytiff.cpp index e137175..b9f2d28 100644 --- a/tests/mesh/test-polytiff.cpp +++ b/tests/mesh/test-polytiff.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-solid-fem-output.cpp b/tests/mesh/test-solid-fem-output.cpp index b9723eb..3a91946 100644 --- a/tests/mesh/test-solid-fem-output.cpp +++ b/tests/mesh/test-solid-fem-output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-ts.cpp b/tests/mesh/test-ts.cpp index f07d1c6..931e569 100644 --- a/tests/mesh/test-ts.cpp +++ b/tests/mesh/test-ts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-vo.cpp b/tests/mesh/test-vo.cpp index fa77846..269d1a6 100644 --- a/tests/mesh/test-vo.cpp +++ b/tests/mesh/test-vo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-vs.cpp b/tests/mesh/test-vs.cpp index 0420ca7..14d0a13 100644 --- a/tests/mesh/test-vs.cpp +++ b/tests/mesh/test-vs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-well-dat.cpp b/tests/mesh/test-well-dat.cpp index 82d2114..d835f4c 100644 --- a/tests/mesh/test-well-dat.cpp +++ b/tests/mesh/test-well-dat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-well-dev.cpp b/tests/mesh/test-well-dev.cpp index a9fd7a5..37c79c1 100644 --- a/tests/mesh/test-well-dev.cpp +++ b/tests/mesh/test-well-dev.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-well-txt.cpp b/tests/mesh/test-well-txt.cpp index 3ab6bc7..23b5965 100644 --- a/tests/mesh/test-well-txt.cpp +++ b/tests/mesh/test-well-txt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mesh/test-wl.cpp b/tests/mesh/test-wl.cpp index 731cee6..bb36bc3 100644 --- a/tests/mesh/test-wl.cpp +++ b/tests/mesh/test-wl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/CMakeLists.txt b/tests/model/CMakeLists.txt index df04e04..c5a62dd 100755 --- a/tests/model/CMakeLists.txt +++ b/tests/model/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2019 - 2025 Geode-solutions +# Copyright (c) 2019 - 2026 Geode-solutions # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-brep-fem-output.cpp b/tests/model/test-brep-fem-output.cpp index c2176ed..b8d23bd 100644 --- a/tests/model/test-brep-fem-output.cpp +++ b/tests/model/test-brep-fem-output.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-geos.cpp b/tests/model/test-geos.cpp index 797b4d2..cc8297e 100644 --- a/tests/model/test-geos.cpp +++ b/tests/model/test-geos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-lso.cpp b/tests/model/test-lso.cpp index 5d1393a..634cc5c 100644 --- a/tests/model/test-lso.cpp +++ b/tests/model/test-lso.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-ml.cpp b/tests/model/test-ml.cpp index 4944b67..eb1cbe1 100644 --- a/tests/model/test-ml.cpp +++ b/tests/model/test-ml.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-shp.cpp b/tests/model/test-shp.cpp index 33bb7af..c778c0a 100644 --- a/tests/model/test-shp.cpp +++ b/tests/model/test-shp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-skua-horizons-stack.cpp b/tests/model/test-skua-horizons-stack.cpp index ab0d101..cbede89 100644 --- a/tests/model/test-skua-horizons-stack.cpp +++ b/tests/model/test-skua-horizons-stack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/model/test-strati-lso-input.cpp b/tests/model/test-strati-lso-input.cpp index bf88ca0..2b4b909 100644 --- a/tests/model/test-strati-lso-input.cpp +++ b/tests/model/test-strati-lso-input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved. + * Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved. */ #include diff --git a/tests/tests_config.hpp.in b/tests/tests_config.hpp.in index ae5bfc0..970d847 100644 --- a/tests/tests_config.hpp.in +++ b/tests/tests_config.hpp.in @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 - 2025 Geode-solutions + * Copyright (c) 2019 - 2026 Geode-solutions * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal From fb0fdd557b2c14aa176166b0a767109702017703 Mon Sep 17 00:00:00 2001 From: Arnaud Botella Date: Fri, 6 Feb 2026 11:12:38 +0100 Subject: [PATCH 2/3] fix --- cmake/Doxyfile.in | 185 +++++++++++-------- cmake/OpenGeode-GeosciencesIOConfig.cmake.in | 58 +++--- 2 files changed, 139 insertions(+), 104 deletions(-) diff --git a/cmake/Doxyfile.in b/cmake/Doxyfile.in index 11e5ce7..f292eaa 100644 --- a/cmake/Doxyfile.in +++ b/cmake/Doxyfile.in @@ -1,83 +1,118 @@ -#Copyright( c ) 2019 - 2026 Geode - solutions +# Copyright (c) 2019 - 2026 Geode-solutions # -#Permission is hereby granted, free of charge, to any person obtaining a copy -#of this software and associated documentation files( the "Software" ), to deal -#in the Software without restriction, including without limitation the rights -#to use, copy, modify, merge, publish, distribute, sublicense, and/ or sell -#copies of the Software, and to permit persons to whom the Software is -#furnished to do so, subject to the following conditions: +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -#The above copyright notice and this permission notice shall be included in -#all copies or substantial portions of the Software. +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. # -#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE -#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -#SOFTWARE. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. -#Doxyfile 1.6.1 +# Doxyfile 1.6.1 -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -#Project related configuration options -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -DOXYFILE_ENCODING = UTF - 8 PROJECT_NAME = @CMAKE_PROJECT_NAME @PROJECT_NUMBER = - OUTPUT_DIRECTORY = @CMAKE_BINARY_DIR - @ / doc CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English - BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES ABBREVIATE_BRIEF = ALWAYS_DETAILED_SEC = - NO INLINE_INHERITED_MEMB = NO FULL_PATH_NAMES = YES STRIP_FROM_PATH = - STRIP_FROM_INC_PATH = SHORT_NAMES = NO JAVADOC_AUTOBRIEF = NO - QT_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO INHERIT_DOCS = - YES SEPARATE_MEMBER_PAGES = NO TAB_SIZE = 4 ALIASES = - OPTIMIZE_OUTPUT_FOR_C = NO OPTIMIZE_OUTPUT_JAVA = NO - OPTIMIZE_FOR_FORTRAN = NO OPTIMIZE_OUTPUT_VHDL = - NO EXTENSION_MAPPING = BUILTIN_STL_SUPPORT = - NO CPP_CLI_SUPPORT = NO SIP_SUPPORT = - NO IDL_PROPERTY_SUPPORT = - YES DISTRIBUTE_GROUP_DOC = - NO SUBGROUPING = YES - TYPEDEF_HIDES_STRUCT = NO - SYMBOL_CACHE_SIZE = - 0 -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -#Build related configuration options -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - - EXTRACT_ALL = YES EXTRACT_PRIVATE = NO EXTRACT_STATIC = NO EXTRACT_LOCAL_CLASSES = - YES EXTRACT_LOCAL_METHODS = NO EXTRACT_ANON_NSPACES = NO HIDE_UNDOC_MEMBERS = - NO HIDE_UNDOC_CLASSES = NO HIDE_FRIEND_COMPOUNDS = NO HIDE_IN_BODY_DOCS = - NO INTERNAL_DOCS = NO CASE_SENSE_NAMES = NO HIDE_SCOPE_NAMES = NO - SHOW_INCLUDE_FILES = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES - SORT_BRIEF_DOCS = NO SORT_MEMBERS_CTORS_1ST = NO SORT_GROUP_NAMES = NO SORT_BY_SCOPE_NAME = - NO GENERATE_TODOLIST = YES GENERATE_TESTLIST = YES - GENERATE_BUGLIST = YES GENERATE_DEPRECATEDLIST = YES - ENABLED_SECTIONS = MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = - NO SHOW_DIRECTORIES = NO SHOW_FILES = NO - SHOW_NAMESPACES = YES FILE_VERSION_FILTER = LAYOUT_FILE = -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -#configuration options related to warning and progress messages -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - - QUIET = - NO WARNINGS = YES WARN_IF_UNDOCUMENTED = - NO WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO WARN_FORMAT = - "$file:$line: " - "$tex" - "t" WARN_LOGFILE = -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -#configuration options related to the input files -#-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - - INPUT = - @CMAKE_SOURCE_DIR - @ / include @CMAKE_SOURCE_DIR @ / docs INPUT_ENCODING = - UTF - - 8 FILE_PATTERNS = - *.h *.dox - RECURSIVE = YES - EXCLUDE = EXCLUDE_SYMLINKS = - NO EXCLUDE_PATTERNS = - @CMAKE_SOURCE_DIR - @ / include /*/private +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- +DOXYFILE_ENCODING = UTF-8 +PROJECT_NAME = @CMAKE_PROJECT_NAME@ +PROJECT_NUMBER = +OUTPUT_DIRECTORY = @CMAKE_BINARY_DIR@/doc +CREATE_SUBDIRS = NO +OUTPUT_LANGUAGE = English +BRIEF_MEMBER_DESC = YES +REPEAT_BRIEF = YES +ABBREVIATE_BRIEF = +ALWAYS_DETAILED_SEC = NO +INLINE_INHERITED_MEMB = NO +FULL_PATH_NAMES = YES +STRIP_FROM_PATH = +STRIP_FROM_INC_PATH = +SHORT_NAMES = NO +JAVADOC_AUTOBRIEF = NO +QT_AUTOBRIEF = NO +MULTILINE_CPP_IS_BRIEF = NO +INHERIT_DOCS = YES +SEPARATE_MEMBER_PAGES = NO +TAB_SIZE = 4 +ALIASES = +OPTIMIZE_OUTPUT_FOR_C = NO +OPTIMIZE_OUTPUT_JAVA = NO +OPTIMIZE_FOR_FORTRAN = NO +OPTIMIZE_OUTPUT_VHDL = NO +EXTENSION_MAPPING = +BUILTIN_STL_SUPPORT = NO +CPP_CLI_SUPPORT = NO +SIP_SUPPORT = NO +IDL_PROPERTY_SUPPORT = YES +DISTRIBUTE_GROUP_DOC = NO +SUBGROUPING = YES +TYPEDEF_HIDES_STRUCT = NO +SYMBOL_CACHE_SIZE = 0 +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- +EXTRACT_ALL = YES +EXTRACT_PRIVATE = NO +EXTRACT_STATIC = NO +EXTRACT_LOCAL_CLASSES = YES +EXTRACT_LOCAL_METHODS = NO +EXTRACT_ANON_NSPACES = NO +HIDE_UNDOC_MEMBERS = NO +HIDE_UNDOC_CLASSES = NO +HIDE_FRIEND_COMPOUNDS = NO +HIDE_IN_BODY_DOCS = NO +INTERNAL_DOCS = NO +CASE_SENSE_NAMES = NO +HIDE_SCOPE_NAMES = NO +SHOW_INCLUDE_FILES = YES +INLINE_INFO = YES +SORT_MEMBER_DOCS = YES +SORT_BRIEF_DOCS = NO +SORT_MEMBERS_CTORS_1ST = NO +SORT_GROUP_NAMES = NO +SORT_BY_SCOPE_NAME = NO +GENERATE_TODOLIST = YES +GENERATE_TESTLIST = YES +GENERATE_BUGLIST = YES +GENERATE_DEPRECATEDLIST= YES +ENABLED_SECTIONS = +MAX_INITIALIZER_LINES = 30 +SHOW_USED_FILES = NO +SHOW_DIRECTORIES = NO +SHOW_FILES = NO +SHOW_NAMESPACES = YES +FILE_VERSION_FILTER = +LAYOUT_FILE = +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- +QUIET = NO +WARNINGS = YES +WARN_IF_UNDOCUMENTED = NO +WARN_IF_DOC_ERROR = YES +WARN_NO_PARAMDOC = NO +WARN_FORMAT = "$file:$line: $text" +WARN_LOGFILE = +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- +INPUT = @CMAKE_SOURCE_DIR@/include @CMAKE_SOURCE_DIR@/docs +INPUT_ENCODING = UTF-8 +FILE_PATTERNS = *.h *.dox +RECURSIVE = YES +EXCLUDE = +EXCLUDE_SYMLINKS = NO +EXCLUDE_PATTERNS = @CMAKE_SOURCE_DIR@/include/*/private EXCLUDE_SYMBOLS = EXAMPLE_PATH = EXAMPLE_PATTERNS = diff --git a/cmake/OpenGeode-GeosciencesIOConfig.cmake.in b/cmake/OpenGeode-GeosciencesIOConfig.cmake.in index 075ea9e..6da9958 100644 --- a/cmake/OpenGeode-GeosciencesIOConfig.cmake.in +++ b/cmake/OpenGeode-GeosciencesIOConfig.cmake.in @@ -1,36 +1,36 @@ -#Copyright( c ) 2019 - 2026 Geode - solutions +# Copyright (c) 2019 - 2026 Geode-solutions # -#Permission is hereby granted, free of charge, to any person obtaining a copy -#of this software and associated documentation files( the "Software" ), to deal -#in the Software without restriction, including without limitation the rights -#to use, copy, modify, merge, publish, distribute, sublicense, and/ or sell -#copies of the Software, and to permit persons to whom the Software is -#furnished to do so, subject to the following conditions: +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: # -#The above copyright notice and this permission notice shall be included in -#all copies or substantial portions of the Software. +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. # -#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE -#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -#SOFTWARE. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. -@PACKAGE_INIT @ +@PACKAGE_INIT@ - include( CMakeFindDependencyMacro ) find_dependency( OpenGeode CONFIG ) +include(CMakeFindDependencyMacro) +find_dependency(OpenGeode CONFIG) -#Load information for each target - include( - ${ CMAKE_CURRENT_LIST_DIR } / @PROJECT_NAME @_mesh_target.cmake ) - include( ${ CMAKE_CURRENT_LIST_DIR } / - @PROJECT_NAME @_model_target.cmake ) +# Load information for each target +include(${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@_mesh_target.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@_model_target.cmake) - get_target_property( library_type @PROJECT_NAME - @ ::mesh TYPE ) if( library_type STREQUAL "STATIC_LIBRARY" ) - find_dependency( OpenGeode - IO CONFIG ) - find_dependency( OpenGeode - Geosciences CONFIG ) - find_dependency( GDAL CONFIG ) - find_dependency( pugixml CONFIG ) endif() \ No newline at end of file +get_target_property(library_type @PROJECT_NAME@::mesh TYPE) +if(library_type STREQUAL "STATIC_LIBRARY") + find_dependency(OpenGeode-IO CONFIG) + find_dependency(OpenGeode-Geosciences CONFIG) + find_dependency(GDAL CONFIG) + find_dependency(pugixml CONFIG) +endif() \ No newline at end of file From 4d7c52d37fcc4848553e5d60c5e5c27d577c567d Mon Sep 17 00:00:00 2001 From: BotellaA <3213882+BotellaA@users.noreply.github.com> Date: Fri, 6 Feb 2026 10:25:07 +0000 Subject: [PATCH 3/3] Apply prepare changes --- cmake/version.rc.in | 43 +++++++++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/cmake/version.rc.in b/cmake/version.rc.in index 1e413e8..9ca8c64 100644 --- a/cmake/version.rc.in +++ b/cmake/version.rc.in @@ -1,19 +1,26 @@ -#define RC_VERSION 1, 0, 0, 0 +#define RC_VERSION 1,0,0,0 -1 VERSIONINFO FILEVERSION RC_VERSION PRODUCTVERSION RC_VERSION BEGIN BLOCK - "VarFileInfo" BEGIN - // English language (0x409) and the Windows Unicode codepage (1200) - VALUE "Translation", - 0x409, - 1200 END BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE - "FileDescription", - "Compiled with @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@\0" VALUE - "ProductVersion", - "@CPACK_PACKAGE_VERSION@\0" VALUE "FileVersion", - "@CPACK_PACKAGE_VERSION@\0" VALUE "InternalName", - "@PROJECT_LIB_NAME@\0" VALUE "ProductName", - "@PROJECT_LIB_NAME@\0" VALUE "CompanyName", - "Geode-solutions SAS\0" VALUE "LegalCopyright", - "Copyright 2019 - 2026 Geode-solutions SAS. All rights reserved.\0" VALUE - "Commentaires", - "https://geode-solutions.com\0" END END END +1 VERSIONINFO +FILEVERSION RC_VERSION +PRODUCTVERSION RC_VERSION +BEGIN + BLOCK "VarFileInfo" + BEGIN + // English language (0x409) and the Windows Unicode codepage (1200) + VALUE "Translation", 0x409, 1200 + END + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "FileDescription", "Compiled with @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@\0" + VALUE "ProductVersion", "@CPACK_PACKAGE_VERSION@\0" + VALUE "FileVersion", "@CPACK_PACKAGE_VERSION@\0" + VALUE "InternalName", "@PROJECT_LIB_NAME@\0" + VALUE "ProductName", "@PROJECT_LIB_NAME@\0" + VALUE "CompanyName", "Geode-solutions SAS\0" + VALUE "LegalCopyright", "Copyright 2019 - 2026 Geode-solutions SAS. All rights reserved.\0" + VALUE "Commentaires", "https://geode-solutions.com\0" + END + END +END