diff options
| author | Roman Lebedev <lebedev.ri@gmail.com> | 2019-07-30 20:47:59 +0000 |
|---|---|---|
| committer | Roman Lebedev <lebedev.ri@gmail.com> | 2019-07-30 20:47:59 +0000 |
| commit | 1e4a094b37a1aa32d860dd036dd7f1fffb18ba9c (patch) | |
| tree | 9151679484fc267a7b0b754781a64023c2dbb12b /llvm/utils/benchmark/src | |
| parent | 9aff33bb95034ded5a6df01ca12f4d5cc0afc277 (diff) | |
| download | bcm5719-llvm-1e4a094b37a1aa32d860dd036dd7f1fffb18ba9c.tar.gz bcm5719-llvm-1e4a094b37a1aa32d860dd036dd7f1fffb18ba9c.zip | |
[benchmark] Fix win32 link on case-sensitive fs
Summary: This fixes cross-builds with MinGW from case-sensitive file-systems (on Linux)
This is a cherry-pick from
https://github.com/google/benchmark/pull/840
https://github.com/google/benchmark/commit/8e48105d465c586068dd8e248fe75a8971c6ba3a
Original patch by: @jschueller (Julien Schueller) !
Differential Revision: https://reviews.llvm.org/D61371
llvm-svn: 367356
Diffstat (limited to 'llvm/utils/benchmark/src')
| -rw-r--r-- | llvm/utils/benchmark/src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/benchmark/src/CMakeLists.txt b/llvm/utils/benchmark/src/CMakeLists.txt index 5b3d52270de..0abfe3cfd53 100644 --- a/llvm/utils/benchmark/src/CMakeLists.txt +++ b/llvm/utils/benchmark/src/CMakeLists.txt @@ -36,7 +36,7 @@ endif() # We need extra libraries on Windows if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") - target_link_libraries(benchmark Shlwapi) + target_link_libraries(benchmark shlwapi) endif() # We need extra libraries on Solaris |

