diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-11-17 18:09:21 -0500 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-11-17 18:19:53 -0500 |
commit | 475154255ace3212087b9b3492c1cd8e51bfde61 (patch) | |
tree | 8b6e1ec855b8e5f8c6428464260239a960211220 /CMakeLists.txt | |
parent | miniupnpc: bump the _POSIX_C_SOURCE feature macro (diff) | |
download | monero-475154255ace3212087b9b3492c1cd8e51bfde61.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 75b7bf60f..b8bc83a07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}) |