mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
18 lines
489 B
CMake
18 lines
489 B
CMake
|
|
list(APPEND SOURCE
|
|
QueryPoints.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
testlist.c)
|
|
|
|
add_executable(mountmgr_apitest
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE})
|
|
|
|
target_link_libraries(mountmgr_apitest wine ${PSEH_LIB})
|
|
set_module_type(mountmgr_apitest win32cui)
|
|
add_importlibs(mountmgr_apitest msvcrt kernel32 ntdll)
|
|
# TODO: Enable this when we get more than one source file to justify its use
|
|
#add_pch(mountmgr_apitest precomp.h "${PCH_SKIP_SOURCE}")
|
|
add_rostests_file(TARGET mountmgr_apitest)
|