reactos/modules/rostests/apitests/zipfldr/CMakeLists.txt
Jérôme Gardou 907025a018 [CMAKE] Introduce the atl_classes interface library
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
2020-10-20 21:44:54 +02:00

21 lines
571 B
CMake

list(APPEND SOURCE
EnumObjects.cpp
EnumParentDir.cpp
IDataObject.cpp)
list(APPEND PCH_SKIP_SOURCE
testlist.c)
add_executable(zipfldr_apitest
${SOURCE}
${PCH_SKIP_SOURCE}
zipfldr_apitest.rc)
target_link_libraries(zipfldr_apitest wine uuid cpprt atl_classes)
set_target_cpp_properties(zipfldr_apitest WITH_EXCEPTIONS)
set_module_type(zipfldr_apitest win32cui)
add_importlibs(zipfldr_apitest shlwapi ole32 shell32 user32 msvcrt kernel32 ntdll)
add_pch(zipfldr_apitest precomp.h "${PCH_SKIP_SOURCE}")
add_rostests_file(TARGET zipfldr_apitest)