- Don't compile apps with Unicode as ReactOS console screenbuffer is not supporting...
authorJohannes Anderwald <johannes.anderwald@reactos.org>
Sat, 17 Nov 2012 15:50:39 +0000 (15:50 +0000)
committerJohannes Anderwald <johannes.anderwald@reactos.org>
Sat, 17 Nov 2012 15:50:39 +0000 (15:50 +0000)
- fixes #CORE-6495, #CORE-6786

svn path=/trunk/; revision=57718

reactos/base/applications/cmdutils/doskey/CMakeLists.txt
reactos/base/applications/sc/CMakeLists.txt
reactos/base/system/diskpart/CMakeLists.txt

index fc8aa68..ba73cec 100644 (file)
@@ -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)
index 16fb5a0..cdfe3f2 100644 (file)
@@ -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)
index 38ecfa5..333625f 100644 (file)
@@ -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)