mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
74ec94e12c
These are (so far): -Wno-format-overflow -Wno-nonnull-compare -Wno-old-style-declaration -Wno-unused-but-set-variable
9 lines
321 B
CMake
9 lines
321 B
CMake
|
|
add_executable(logevent logevent.c logevent.rc)
|
|
set_module_type(logevent win32cui)
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|
target_compile_options(logevent PRIVATE -Wno-unused-but-set-variable)
|
|
endif()
|
|
add_importlibs(logevent advapi32 msvcrt kernel32)
|
|
add_cd_file(TARGET logevent DESTINATION reactos/system32 FOR all)
|