projects
/
platform
/
upstream
/
Vulkan-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d51a8a
)
Fix vulkan link to on cfgmgr32 case-sensitive fs
author
xantares
<xantares09@hotmail.com>
Tue, 20 Oct 2020 17:37:43 +0000
(19:37 +0200)
committer
Lenny Komow
<lenny@lunarg.com>
Tue, 20 Oct 2020 19:29:15 +0000
(13:29 -0600)
On MinGW from Linux this fails because cfgmgr32 is lowercase. This will still work on win32.
loader/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/loader/CMakeLists.txt
b/loader/CMakeLists.txt
index f16c014ed5b113d736b69453319f44447c29c3bf..7341403e71088d796124bb34d3933177c1f78f72 100644
(file)
--- a/
loader/CMakeLists.txt
+++ b/
loader/CMakeLists.txt
@@
-228,7
+228,7
@@
if(WIN32)
target_link_libraries(vulkan OneCoreUAP.lib LIBCMT.LIB LIBCMTD.LIB LIBVCRUNTIME.LIB LIBUCRT.LIB)
set_target_properties(vulkan PROPERTIES LINK_FLAGS "/NODEFAULTLIB")
else()
- target_link_libraries(vulkan
C
fgmgr32)
+ target_link_libraries(vulkan
c
fgmgr32)
endif()
add_dependencies(vulkan loader_asm_gen_files)