diff options
author | Russell Johnston <rpjohnst@gmail.com> | 2022-10-15 11:14:56 -0700 |
---|---|---|
committer | Russell Johnston <rpjohnst@gmail.com> | 2022-10-15 11:14:56 -0700 |
commit | 8bf19a07e068b17c2bc2a32aed0ba6d48a80411f (patch) | |
tree | 604c98ff3e0f4d9959cea5220112f0bbc79a7a94 /absl/random/CMakeLists.txt | |
parent | 5fa65f28e46e86c44966a1ca8a727a329d9c1ff8 (diff) |
Use the `-l` form for MinGW-specific link dependencies
This corrects the generated .pc files, so these libs match the other libs
already included there.
Diffstat (limited to 'absl/random/CMakeLists.txt')
-rw-r--r-- | absl/random/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/random/CMakeLists.txt b/absl/random/CMakeLists.txt index d04c7081..c74fd300 100644 --- a/absl/random/CMakeLists.txt +++ b/absl/random/CMakeLists.txt @@ -569,7 +569,7 @@ absl_cc_library( ${ABSL_DEFAULT_COPTS} LINKOPTS ${ABSL_DEFAULT_LINKOPTS} - $<$<BOOL:${MINGW}>:"bcrypt"> + $<$<BOOL:${MINGW}>:-lbcrypt> DEPS absl::core_headers absl::optional |