mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
msys: look in msys' directory for files
This tells find_path and find_library to look under this directory first which is what we want on msys2.
This commit is contained in:
parent
d855fe4e89
commit
475154255a
@ -95,6 +95,11 @@ else()
|
||||
endif()
|
||||
option(STATIC "Link libraries statically" ${DEFAULT_STATIC})
|
||||
|
||||
if(MINGW)
|
||||
get_filename_component(msys2_install_path "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MSYS2 64bit;InstallLocation]" ABSOLUTE)
|
||||
set(CMAKE_INCLUDE_PATH "${msys2_install_path}/mingw64/include")
|
||||
endif()
|
||||
|
||||
if(STATIC)
|
||||
if(MSVC)
|
||||
set(CMAKE_FIND_LIBRARY_SUFFIXES .lib .dll.a .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
|
||||
|
Loading…
Reference in New Issue
Block a user