mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 00:00:20 +00:00
18 lines
464 B
CMake
18 lines
464 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(NOT MSVC)
|
|
add_target_compile_flags(rosperf "-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)
|