aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2019-09-01 20:24:14 +0200
committerGitHub <noreply@github.com>2019-09-01 20:24:14 +0200
commitb3df6e523adf47bb7b1f2108fc4204cc85dd9617 (patch)
treebfbee0ef09d325a5fc6f95a5cb06cf6a452849e1 /src
parent4a4e00ddcd44a8fc7a2c636f0959e74cd39cdd6e (diff)
parent96d5d3f4c8ebdb887da49998522e37c329f1115f (diff)
Merge pull request #509 from Zapeth/master
Fix cmake resource file compilation issues
Diffstat (limited to 'src')
-rw-r--r--src/libui_sdl/CMakeLists.txt12
-rw-r--r--src/libui_sdl/libui/windows/CMakeLists.txt2
2 files changed, 9 insertions, 5 deletions
diff --git a/src/libui_sdl/CMakeLists.txt b/src/libui_sdl/CMakeLists.txt
index 63e9f48..64206bf 100644
--- a/src/libui_sdl/CMakeLists.txt
+++ b/src/libui_sdl/CMakeLists.txt
@@ -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)
@@ -39,11 +43,11 @@ if (UNIX)
ADD_DEFINITIONS(${GTK3_CFLAGS_OTHER})
add_custom_command(OUTPUT melon_grc.c
- COMMAND glib-compile-resources --sourcedir="${CMAKE_SOURCE_DIR}"
- --target="${CMAKE_CURRENT_BINARY_DIR}/melon_grc.c"
+ COMMAND glib-compile-resources --sourcedir=${CMAKE_SOURCE_DIR}
+ --target=${CMAKE_CURRENT_BINARY_DIR}/melon_grc.c
--generate-source "${CMAKE_SOURCE_DIR}/melon_grc.xml"
- COMMAND glib-compile-resources --sourcedir="${CMAKE_SOURCE_DIR}"
- --target="${CMAKE_CURRENT_BINARY_DIR}/melon_grc.h"
+ COMMAND glib-compile-resources --sourcedir=${CMAKE_SOURCE_DIR}
+ --target=${CMAKE_CURRENT_BINARY_DIR}/melon_grc.h
--generate-header "${CMAKE_SOURCE_DIR}/melon_grc.xml")
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
diff --git a/src/libui_sdl/libui/windows/CMakeLists.txt b/src/libui_sdl/libui/windows/CMakeLists.txt
index 9d5313a..24d4ad9 100644
--- a/src/libui_sdl/libui/windows/CMakeLists.txt
+++ b/src/libui_sdl/libui/windows/CMakeLists.txt
@@ -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()