mirror of
https://github.com/reactos/reactos.git
synced 2024-10-29 19:13:58 +00:00
13 lines
363 B
CMake
13 lines
363 B
CMake
|
|
||
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||
|
|
||
|
list(APPEND SOURCE
|
||
|
CreateService.c
|
||
|
testlist.c)
|
||
|
|
||
|
add_executable(advapi32_apitest ${SOURCE})
|
||
|
target_link_libraries(advapi32_apitest wine)
|
||
|
set_module_type(advapi32_apitest win32cui)
|
||
|
add_importlibs(advapi32_apitest advapi32 msvcrt kernel32 ntdll)
|
||
|
add_cd_file(TARGET advapi32_apitest DESTINATION reactos/bin FOR all)
|