Reactos
1
2include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
3
4## The message string templates are in ANSI to reduce binary size
5add_message_headers(ANSI evtmsgstr.mc)
6
7add_executable(eventcreate eventcreate.c eventcreate.rc)
8set_module_type(eventcreate win32cui UNICODE)
9add_dependencies(eventcreate evtmsgstr)
10target_link_libraries(eventcreate conutils ${PSEH_LIB})
11add_importlibs(eventcreate advapi32 msvcrt kernel32)
12add_cd_file(TARGET eventcreate DESTINATION reactos/system32 FOR all)