[CONUTILS]: Create a C library for console output/input functions, last-error message...
[reactos.git] / reactos / base / applications / cmdutils / eventcreate / CMakeLists.txt
1
2 PROJECT(eventcreate)
3
4 include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
5
6 ## The message string templates are in ANSI to reduce binary size
7 add_message_headers(ANSI evtmsgstr.mc)
8
9 add_executable(eventcreate eventcreate.c eventcreate.rc)
10 set_module_type(eventcreate win32cui UNICODE)
11 add_dependencies(eventcreate evtmsgstr)
12 target_link_libraries(eventcreate conutils ${PSEH_LIB})
13 add_importlibs(eventcreate advapi32 msvcrt kernel32)
14 add_cd_file(TARGET eventcreate DESTINATION reactos/system32 FOR all)