mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
74ec94e12c
These are (so far): -Wno-format-overflow -Wno-nonnull-compare -Wno-old-style-declaration -Wno-unused-but-set-variable
19 lines
494 B
CMake
19 lines
494 B
CMake
|
|
list(APPEND SOURCE
|
|
rosperf.c
|
|
lines.c
|
|
fill.c
|
|
scroll.c
|
|
text.c
|
|
alphablend.c
|
|
testlist.c
|
|
gradient.c)
|
|
|
|
add_executable(rosperf ${SOURCE} rosperf.rc)
|
|
set_module_type(rosperf win32cui UNICODE)
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|
target_compile_options(rosperf PRIVATE -Wno-unused-but-set-variable)
|
|
endif()
|
|
add_importlibs(rosperf version msimg32 gdi32 shell32 advapi32 user32 ntdll msvcrt kernel32)
|
|
add_cd_file(TARGET rosperf DESTINATION reactos/system32 FOR all)
|