mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
Revert "[host] avoid manual windres command"
This reverts commit d82f2e510d
.
While the proposed change is more correct, it breaks the generation of
the file due to failure to locate the resource files, such as
`resources/icon.ico`.
This commit is contained in:
parent
e9b009db9f
commit
cd10e02862
@ -10,7 +10,6 @@ add_library(platform_Windows STATIC
|
|||||||
src/service.c
|
src/service.c
|
||||||
src/mousehook.c
|
src/mousehook.c
|
||||||
src/force_compose.c
|
src/force_compose.c
|
||||||
resource.rc
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# allow use of functions for Windows Vista or later
|
# allow use of functions for Windows Vista or later
|
||||||
@ -18,7 +17,15 @@ add_definitions(-D _WIN32_WINNT=0x6000)
|
|||||||
|
|
||||||
add_subdirectory("capture")
|
add_subdirectory("capture")
|
||||||
|
|
||||||
|
FIND_PROGRAM(WINDRES_EXECUTABLE NAMES "x86_64-w64-mingw32-windres" "windres.exe" DOC "windres executable")
|
||||||
|
ADD_CUSTOM_COMMAND(TARGET platform_Windows POST_BUILD
|
||||||
|
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}"
|
||||||
|
COMMAND ${WINDRES_EXECUTABLE} -i resource.rc -o "${PROJECT_BINARY_DIR}/resource.o"
|
||||||
|
VERBATIM
|
||||||
|
)
|
||||||
|
|
||||||
target_link_libraries(platform_Windows
|
target_link_libraries(platform_Windows
|
||||||
|
"${PROJECT_BINARY_DIR}/resource.o"
|
||||||
lg_common
|
lg_common
|
||||||
capture
|
capture
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user