Skip to content

Commit af2e99a

Browse files
committed
update of converter to v1.3.29
1 parent 7cc8b35 commit af2e99a

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# URL: https://github.com/panchaBhuta/rapidcsv
33
#
4-
# Copyright (c) 2023-2023 Gautam Dhar
4+
# Copyright (c) 2023-2025 Gautam Dhar
55
# All rights reserved.
66
#
77
# rapidcsv is distributed under the BSD 3-Clause license, see LICENSE for details.

cmake/rapidcsv.cmake

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,18 @@ endmacro()
126126

127127
# fetch dependencies of rapidcsv
128128
macro(fetch_dependencies)
129+
include( FetchContent )
129130

131+
########## converter start ###############
130132
set(CONVERTERLIB "converter") # local-variable
131133
# https://stackoverflow.com/questions/29892929/variables-set-with-parent-scope-are-empty-in-the-corresponding-child-scope-why
132134
#set(CONVERTERLIB ${CONVERTERLIB} PARENT_SCOPE) # global-variable
133135
set_target_properties(rapidcsv PROPERTIES CONVERTERLIB ${CONVERTERLIB}) # global-variable
134136

135-
include( FetchContent )
137+
136138
FetchContent_Declare( ${CONVERTERLIB}
137139
GIT_REPOSITORY https://github.com/panchaBhuta/converter.git
138-
GIT_TAG v1.3.28) # adjust tag/branch/commit as needed
140+
GIT_TAG v1.3.29) # adjust tag/branch/commit as needed
139141
FetchContent_MakeAvailable(${CONVERTERLIB})
140142

141143
#[==================[
@@ -149,6 +151,9 @@ macro(fetch_dependencies)
149151
#if (NOT TARGET converter::converter)
150152
# find_package(converter REQUIRED)
151153
#endif()
154+
155+
########## converter end ###############
156+
152157
endmacro()
153158

154159

include/rapidcsv/rapidcsv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ typedef SSIZE_T ssize_t;
5252

5353
#define RAPIDCSV_VERSION_MAJOR 4
5454
#define RAPIDCSV_VERSION_MINOR 0
55-
#define RAPIDCSV_VERSION_PATCH 10
55+
#define RAPIDCSV_VERSION_PATCH 11
5656

5757
#define UPSTREAM___RAPIDCSV__VERSION 8.88
5858

make.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# make.sh
44
#
5-
# Copyright (C) 2023-2024 Gautam Dhar
5+
# Copyright (C) 2023-2025 Gautam Dhar
66
# All rights reserved.
77
#
88
# See LICENSE for redistribution information.
@@ -140,7 +140,6 @@ if [[ "${BUILD}" == "1" ]]; then
140140
elif [ "${OS}" == "Darwin" ]; then
141141
MAKEARGS="-j$(sysctl -n hw.ncpu)"
142142
fi
143-
#mkdir -p build-debug && cd build-debug && cmake -DOPTION_CONVERTER_DEBUG_LOG=ON -DRAPIDCSV_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Debug .. && cmake --build . ${MAKEARGS} && cd .. && \
144143
mkdir -p build-debug && cd build-debug && echo "##### START(debug) : processing/configure of CMakeLists.txt #####" && cmake -DRAPIDCSV_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Debug .. && \
145144
echo "##### START(debug) : project build #####" && cmake --build . ${MAKEARGS} && cd .. && \
146145
mkdir -p build-release && cd build-release && echo "##### START(release) : processing/configure of CMakeLists.txt #####" && cmake -DRAPIDCSV_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Release .. && \

tests/CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# URL: https://github.com/panchaBhuta/rapidcsv
33
#
4-
# Copyright (c) 2023-2023 Gautam Dhar
4+
# Copyright (c) 2023-2025 Gautam Dhar
55
# All rights reserved.
66
#
77
# rapidcsv is distributed under the BSD 3-Clause license, see LICENSE for details.
@@ -24,7 +24,6 @@ macro(add_unit_test testname)
2424
# executable ${testname} has to have transitive association to all its dependencies(aka library chain)
2525
# refer https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html#target-usage-requirements
2626
# refer https://cmake.org/cmake/help/latest/command/target_link_libraries.html#libraries-for-a-target-and-or-its-dependents
27-
# refer https://cmake.org/cmake/help/latest/command/target_link_libraries.html#libraries-for-a-target-and-or-its-dependents
2827
set_target_properties(${testname} PROPERTIES LINKER_LANGUAGE CXX)
2928
endif()
3029
endmacro(add_unit_test)
@@ -42,7 +41,6 @@ macro(add_unit_test_properties testname)
4241
# executable ${testname} has to have transitive association to all its dependencies(aka library chain)
4342
# refer https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html#target-usage-requirements
4443
# refer https://cmake.org/cmake/help/latest/command/target_link_libraries.html#libraries-for-a-target-and-or-its-dependents
45-
# refer https://cmake.org/cmake/help/latest/command/target_link_libraries.html#libraries-for-a-target-and-or-its-dependents
4644
set_target_properties(${testname} PROPERTIES LINKER_LANGUAGE CXX)
4745
endif()
4846
endmacro(add_unit_test_properties)
@@ -58,7 +56,6 @@ macro(add_perf_test testname)
5856
# executable ${testname} has to have transitive association to all its dependencies(aka library chain)
5957
# refer https://cmake.org/cmake/help/latest/manual/cmake-buildsystem.7.html#target-usage-requirements
6058
# refer https://cmake.org/cmake/help/latest/command/target_link_libraries.html#libraries-for-a-target-and-or-its-dependents
61-
# refer https://cmake.org/cmake/help/latest/command/target_link_libraries.html#libraries-for-a-target-and-or-its-dependents
6259
endif()
6360
endmacro(add_perf_test)
6461

@@ -252,3 +249,4 @@ add_unit_test(testViewYmd003)
252249
add_unit_test(test099)
253250
#]===========================================]
254251

252+

0 commit comments

Comments
 (0)