reactos/rostests/winetests/imagehlp/CMakeLists.txt
Rafal Harabien 6486187cdb [ROSTESTS]
- Declare functions with 0 arguments using VOID keyword. In C it matters
- Add imagehlp winetest to CMake build

svn path=/trunk/; revision=52006
2011-05-30 11:40:58 +00:00

16 lines
405 B
CMake

add_definitions(
-D__ROS_LONG64__
-D_DLL -D__USE_CRTIMP)
list(APPEND SOURCE
image.c
integrity.c
testlist.c)
add_executable(imagehlp_winetest ${SOURCE})
target_link_libraries(imagehlp_winetest wine uuid)
set_module_type(imagehlp_winetest win32cui)
add_importlibs(imagehlp_winetest advapi32 msvcrt kernel32 ntdll)
add_cd_file(TARGET imagehlp_winetest DESTINATION reactos/bin FOR all)