diff options
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 92ef3d4c..300fa03e 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -27,5 +27,6 @@ else() target_compile_definitions(cru_base PUBLIC CRU_PLATFORM_LINUX) endif() +find_package(double-conversion CONFIG REQUIRED) find_package(Microsoft.GSL CONFIG REQUIRED) -target_link_libraries(cru_base PUBLIC Microsoft.GSL::GSL) +target_link_libraries(cru_base PUBLIC Microsoft.GSL::GSL double-conversion::double-conversion) |