Fix MinGW resource file compilation issues
This commit is contained in:
parent
16d5041da8
commit
7cb8112984
|
@ -14,6 +14,10 @@ SET(SOURCES_LIBUI
|
|||
OSD.cpp
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -i <SOURCE> -o <OBJECT>")
|
||||
endif()
|
||||
|
||||
option(BUILD_SHARED_LIBS "Whether to build libui as a shared library or a static library" ON)
|
||||
set(BUILD_SHARED_LIBS OFF)
|
||||
add_subdirectory(libui)
|
||||
|
|
|
@ -73,7 +73,7 @@ macro(_handle_static)
|
|||
add_custom_command(
|
||||
TARGET libui POST_BUILD
|
||||
COMMAND
|
||||
${CMAKE_COMMAND} -E copy $<TARGET_PROPERTY:libui,BINARY_DIR>/CMakeFiles/libui.dir/windows/resources.rc.* ${_LIBUI_STATIC_RES}
|
||||
${CMAKE_COMMAND} -E copy $<TARGET_PROPERTY:libui,BINARY_DIR>/CMakeFiles/libui.dir/windows/resources.rc.obj ${_LIBUI_STATIC_RES}
|
||||
COMMENT "Copying libui.res")
|
||||
endmacro()
|
||||
|
||||
|
|
Loading…
Reference in New Issue