mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
cmake: cross-compilation to Windows - fix 'version' lib linking
This commit is contained in:
parent
31dbe7ea42
commit
e0679ce5e6
1 changed files with 5 additions and 1 deletions
|
@ -514,7 +514,11 @@ if (HIDAPI_FOUND OR LibUSB_COMPILE_TEST_PASSED)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
list(APPEND EXTRA_LIBRARIES setupapi Version)
|
find_library(VERSION_LIBRARY version PATHS /usr/x86_64-w64-mingw32/lib)
|
||||||
|
if(VERSION_LIBRARY STREQUAL "VERSION_LIBRARY-NOTFOUND")
|
||||||
|
set(VERSION_LIBRARY Version)
|
||||||
|
endif()
|
||||||
|
list(APPEND EXTRA_LIBRARIES setupapi ${VERSION_LIBRARY})
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue