Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let system-installed fast_float be found #3949

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1053,13 +1053,13 @@ ENDIF()

include("cmake/Check-from_chars.cmake")
IF(NOT FROM_CHARS_WORKS)
CPMFindPackage(NAME fast_float
CPMFindPackage(NAME FastFloat
GIT_REPOSITORY https://github.com/fastfloat/fast_float
VERSION 6.1.0
EXCLUDE_FROM_ALL yes)
GET_TARGET_PROPERTY(fast_float_INCLUDE_DIRECTORIES
GET_TARGET_PROPERTY(FastFloat_INCLUDE_DIRECTORIES
FastFloat::fast_float INTERFACE_INCLUDE_DIRECTORIES)
INCLUDE_DIRECTORIES(${fast_float_INCLUDE_DIRECTORIES})
INCLUDE_DIRECTORIES(${FastFloat_INCLUDE_DIRECTORIES})
ADD_DEFINITIONS(-DUSE_FAST_FLOAT)
ENDIF()

Expand Down
Loading