mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +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:
parent
edee22de36
commit
38b84d3f65
3 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue