Skip to content

Commit 2faf885

Browse files
committed
Test if this fixes LLFIO Mingw CI failing ...
1 parent 3c1d8cb commit 2faf885

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

cmakelib/QuickCppLibUtils.cmake

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,14 @@ function(find_quickcpplib_library libraryname)
341341
if(NOT ${libraryname}_FOUND)
342342
foreach(config Debug Release RelWithDebInfo MinSizeRel)
343343
indented_message(STATUS "Superbuilding missing dependency ${libraryname} with config ${config}, this may take a while ...")
344-
set(cmakeargs "-DCMAKE_BUILD_TYPE=${config} -G \"${CMAKE_GENERATOR}\" -DBUILD_TESTING=OFF \"-DQUICKCPPLIB_ROOT_BINARY_DIR=${QUICKCPPLIB_ROOT_BINARY_DIR}\"")
344+
set(cmakeargs
345+
"-DCMAKE_BUILD_TYPE=${config}"
346+
"-G${CMAKE_GENERATOR}"
347+
"-DBUILD_TESTING=OFF"
348+
"-DQUICKCPPLIB_ROOT_BINARY_DIR=${QUICKCPPLIB_ROOT_BINARY_DIR}"
349+
)
345350
if(DEFINED CMAKE_TOOLCHAIN_FILE)
346-
set(cmakeargs "${cmakeargs} \"-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}\"")
351+
list(APPEND cmakeargs "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}")
347352
endif()
348353
if(FINDLIB_GIT_TAG STREQUAL "master" OR FINDLIB_GIT_TAG STREQUAL "develop")
349354
set(extraargs "GIT_SHALLOW 1;GIT_SUBMODULES \"\"")

include/quickcpplib/revision.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
2-
#define QUICKCPPLIB_PREVIOUS_COMMIT_REF 40b0964df509e90a4b527243a8fd4dbf6b704ff2
3-
#define QUICKCPPLIB_PREVIOUS_COMMIT_DATE "2025-12-16 17:36:47 +00:00"
4-
#define QUICKCPPLIB_PREVIOUS_COMMIT_UNIQUE 40b0964d
2+
#define QUICKCPPLIB_PREVIOUS_COMMIT_REF 3c1d8cb5e94722447e4f17e87b5a9e3a0c66fb39
3+
#define QUICKCPPLIB_PREVIOUS_COMMIT_DATE "2026-05-04 19:45:35 +00:00"
4+
#define QUICKCPPLIB_PREVIOUS_COMMIT_UNIQUE 3c1d8cb5

0 commit comments

Comments
 (0)