https://git.reactos.org/?p=reactos.git;a=commitdiff;h=49ceac2efc2a6ba65fc0b7...
commit 49ceac2efc2a6ba65fc0b7dffbfe5dbb6af7601d Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Sat Dec 10 00:29:53 2022 +0100 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Sat Dec 10 00:36:12 2022 +0100
[MDI] Template MDI app is Win32 GUI, not CUI. --- modules/rosapps/templates/mdi/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/rosapps/templates/mdi/CMakeLists.txt b/modules/rosapps/templates/mdi/CMakeLists.txt index 9debc998841..9adcd757cef 100644 --- a/modules/rosapps/templates/mdi/CMakeLists.txt +++ b/modules/rosapps/templates/mdi/CMakeLists.txt @@ -6,6 +6,6 @@ list(APPEND SOURCE main.c)
add_executable(template_mdi ${SOURCE} mdi.rc) -set_module_type(template_mdi win32cui) +set_module_type(template_mdi win32gui) add_importlibs(template_mdi advapi32 user32 gdi32 comctl32 msvcrt kernel32 ntdll) add_cd_file(TARGET template_mdi DESTINATION reactos/system32 FOR all)