mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
ffd060295d
* Cleanup and Changes based on reviewer comments * For failure, show returned and expected values CORE-17005
13 lines
311 B
CMake
13 lines
311 B
CMake
PROJECT(MAKEIMG)
|
|
|
|
add_executable(showimg showimg.c)
|
|
|
|
set_module_type(showimg win32gui UNICODE)
|
|
add_importlibs(showimg gdi32 user32 shell32 msvcrt kernel32 ntdll)
|
|
|
|
add_library(image MODULE image.rc)
|
|
set_module_type(image win32dll ENTRYPOINT 0)
|
|
|
|
|
|
add_rostests_file(TARGET showimg)
|
|
add_rostests_file(TARGET image)
|