[EVENTCREATE]: Implement the EventCreate command-line tool, which allows reporting...
[reactos.git] / reactos / base / applications / cmdutils / eventcreate / CMakeLists.txt
1
2 PROJECT(eventcreate)
3
4 ## The message string templates are in ANSI to reduce binary size
5 add_message_headers(ANSI evtmsgstr.mc)
6
7 add_executable(eventcreate eventcreate.c eventcreate.rc)
8 set_module_type(eventcreate win32cui UNICODE)
9 add_dependencies(eventcreate evtmsgstr)
10 add_importlibs(eventcreate advapi32 user32 msvcrt kernel32)
11 add_cd_file(TARGET eventcreate DESTINATION reactos/system32 FOR all)