mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
14 lines
371 B
CMake
14 lines
371 B
CMake
|
|
||
|
add_subdirectory(dll)
|
||
|
|
||
|
list(APPEND SOURCE
|
||
|
service.c
|
||
|
tests.c
|
||
|
testlist.c)
|
||
|
|
||
|
add_executable(localspl_apitest ${SOURCE})
|
||
|
target_link_libraries(localspl_apitest wine ${PSEH_LIB})
|
||
|
set_module_type(localspl_apitest win32cui)
|
||
|
add_importlibs(localspl_apitest advapi32 winspool msvcrt kernel32 ntdll)
|
||
|
add_cd_file(TARGET localspl_apitest DESTINATION reactos/bin FOR all)
|