mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
- Don't compile apps with Unicode as ReactOS console screenbuffer is not supporting this yet
- fixes #CORE-6495, #CORE-6786 svn path=/trunk/; revision=57718
This commit is contained in:
@@ -3,6 +3,6 @@ set_rc_compiler()
|
||||
|
||||
add_executable(doskey doskey.c doskey.rc)
|
||||
|
||||
set_module_type(doskey win32cui UNICODE)
|
||||
set_module_type(doskey win32cui)
|
||||
add_importlibs(doskey user32 msvcrt kernel32)
|
||||
add_cd_file(TARGET doskey DESTINATION reactos/system32 FOR all)
|
||||
|
||||
@@ -14,7 +14,7 @@ list(APPEND SOURCE
|
||||
|
||||
add_executable(sc ${SOURCE})
|
||||
|
||||
set_module_type(sc win32cui UNICODE)
|
||||
set_module_type(sc win32cui)
|
||||
add_importlibs(sc advapi32 msvcrt kernel32)
|
||||
add_pch(sc sc.h)
|
||||
add_cd_file(TARGET sc DESTINATION reactos/system32 FOR all)
|
||||
|
||||
@@ -41,7 +41,7 @@ add_executable(diskpart
|
||||
uniqueid.c
|
||||
diskpart.rc)
|
||||
|
||||
set_module_type(diskpart win32cui UNICODE)
|
||||
set_module_type(diskpart win32cui)
|
||||
add_importlibs(diskpart user32 msvcrt kernel32)
|
||||
if(MSVC)
|
||||
add_importlibs(diskpart ntdll)
|
||||
|
||||
Reference in New Issue
Block a user