add mingw dependencies/include to include path
Older versions of mingw64 do not have the versionhelpers.h header, add it to the dependencies submodule include/ directory and add it to include_directories() for mingw in cmake.
This commit is contained in:
parent
9cb9ce86bd
commit
26b15b2c1e
|
@ -344,6 +344,7 @@ if(WIN32)
|
|||
endif()
|
||||
|
||||
if(MINGW)
|
||||
include_directories("${CMAKE_SOURCE_DIR}/dependencies/include")
|
||||
include_directories("${CMAKE_SOURCE_DIR}/dependencies/mingw-xaudio/include")
|
||||
elseif(MSVC)
|
||||
set(DEPS_MSVC "${CMAKE_SOURCE_DIR}/dependencies/msvc")
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 33a0af6701313fed2219029a069c712740233a77
|
||||
Subproject commit 993a407b1456f209efd05d3a11af8d56cb1d845b
|
Loading…
Reference in New Issue