mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
8 lines
291 B
CMake
8 lines
291 B
CMake
|
|
add_executable(logevent logevent.c logevent.rc)
|
|
set_module_type(logevent win32cui)
|
|
if(NOT MSVC)
|
|
add_target_compile_flags(logevent "-Wno-unused-but-set-variable")
|
|
endif()
|
|
add_importlibs(logevent advapi32 msvcrt kernel32)
|
|
add_cd_file(TARGET logevent DESTINATION reactos/system32 FOR all)
|