mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
eventcreate\eventcreate.c(248): warning C4267: 'function': conversion from 'size_t' to 'DWORD', possible loss of data
11 lines
416 B
CMake
11 lines
416 B
CMake
|
|
## The message string templates are in ANSI to reduce binary size
|
|
add_message_headers(ANSI evtmsgstr.mc)
|
|
|
|
add_executable(eventcreate eventcreate.c eventcreate.rc)
|
|
set_module_type(eventcreate win32cui UNICODE)
|
|
add_dependencies(eventcreate evtmsgstr)
|
|
target_link_libraries(eventcreate conutils)
|
|
add_importlibs(eventcreate advapi32 msvcrt kernel32)
|
|
add_cd_file(TARGET eventcreate DESTINATION reactos/system32 FOR all)
|