mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 11:04:52 +00:00
[USETUP]
* Prevent the "illegal character encoding in string literal" warning from flooding the build log. This must be inspected. CORE-8516 svn path=/trunk/; revision=64484
This commit is contained in:
parent
7c6eba950b
commit
722578a47b
1 changed files with 6 additions and 7 deletions
|
@ -32,14 +32,13 @@ list(APPEND SOURCE
|
||||||
settings.c
|
settings.c
|
||||||
usetup.h)
|
usetup.h)
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
||||||
|
#FIXME: Investigate Clang "illegal character encoding in string literal" warning
|
||||||
|
set_property(SOURCE mui.c APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-invalid-source-encoding")
|
||||||
|
endif()
|
||||||
|
|
||||||
add_executable(usetup ${SOURCE} usetup.rc)
|
add_executable(usetup ${SOURCE} usetup.rc)
|
||||||
|
target_link_libraries(usetup zlib inflib ext2lib vfatlib)
|
||||||
target_link_libraries(usetup
|
|
||||||
zlib
|
|
||||||
inflib
|
|
||||||
ext2lib
|
|
||||||
vfatlib)
|
|
||||||
|
|
||||||
set_module_type(usetup nativecui)
|
set_module_type(usetup nativecui)
|
||||||
add_importlibs(usetup ntdll)
|
add_importlibs(usetup ntdll)
|
||||||
add_pch(usetup usetup.h SOURCE)
|
add_pch(usetup usetup.h SOURCE)
|
||||||
|
|
Loading…
Reference in a new issue