Skip to content

Commit 64c3862

Browse files
build(windows): fix resource file name (#3793)
1 parent 955c0fd commit 64c3862

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmake/compile_definitions/windows.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if(NOT DEFINED SUNSHINE_ICON_PATH)
3838
set(SUNSHINE_ICON_PATH "${CMAKE_SOURCE_DIR}/sunshine.ico")
3939
endif()
4040

41-
configure_file("${CMAKE_SOURCE_DIR}/src/platform/windows/windows.rs.in" windows.rc @ONLY)
41+
configure_file("${CMAKE_SOURCE_DIR}/src/platform/windows/windows.rc.in" windows.rc @ONLY)
4242

4343
set(PLATFORM_TARGET_FILES
4444
"${CMAKE_CURRENT_BINARY_DIR}/windows.rc"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* @file src/platform/windows/windows.rs.in
2+
* @file src/platform/windows/windows.rc.in
33
* @brief Windows resource file template.
4-
* @note The final `windows.rs` is generated from this file during the CMake build.
4+
* @note The final `windows.rc` is generated from this file during the CMake build.
55
* @todo Use CMake definitions directly, instead of configuring this file.
66
*/
77
#include "winver.h"

0 commit comments

Comments
 (0)