Skip to content

Commit f6f2719

Browse files
committed
Try again
1 parent e38e174 commit f6f2719

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ if (NOT (WIN32 OR APPLE OR ANDROID))
108108
include(CheckLibraryExists)
109109
check_library_exists(rt timer_create "" HAVE_LIB_RT)
110110
if (HAVE_LIB_RT)
111-
all_link_libraries(PUBLIC rt)
111+
# The extra generator expression check is because under cross compilation
112+
# it would appear ANDROID isn't always set
113+
all_link_libraries(PUBLIC $<$<PLATFORM_ID:Linux>:rt>)
112114
endif()
113115
endif()
114116

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 68faf00b1f7d9b85e676f40d2d9be9268acd7d16
3-
#define QUICKCPPLIB_PREVIOUS_COMMIT_DATE "2026-05-06 18:37:29 +00:00"
4-
#define QUICKCPPLIB_PREVIOUS_COMMIT_UNIQUE 68faf00b
2+
#define QUICKCPPLIB_PREVIOUS_COMMIT_REF e38e1741e4bbe7daa3e693da03b924aae2e2c1d9
3+
#define QUICKCPPLIB_PREVIOUS_COMMIT_DATE "2026-05-06 19:02:29 +00:00"
4+
#define QUICKCPPLIB_PREVIOUS_COMMIT_UNIQUE e38e1741

0 commit comments

Comments
 (0)