mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
6db0c12e85
- Tests focus mainly on loading + saving images. - The implementation is not perfect yet, see CImage_WIP.txt for test results. - The GDI+ functions should be fixed before this test can pass fully, MS' ATL fails in ReactOS, but passes on Windows. svn path=/trunk/; revision=72332
21 lines
531 B
CMake
21 lines
531 B
CMake
|
|
add_definitions(-DINITGUID)
|
|
set_cpp(WITH_RUNTIME WITH_EXCEPTIONS)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
|
|
|
|
add_executable(atl_apitest
|
|
atltypes.cpp
|
|
CComBSTR.cpp
|
|
CComHeapPtr.cpp
|
|
CImage.cpp
|
|
CRegKey.cpp
|
|
CString.cpp
|
|
testlist.c
|
|
atl_apitest.rc)
|
|
|
|
target_link_libraries(atl_apitest wine uuid)
|
|
set_module_type(atl_apitest win32cui)
|
|
add_importlibs(atl_apitest rpcrt4 ole32 oleaut32 msimg32 gdi32 advapi32 user32 msvcrt kernel32)
|
|
add_cd_file(TARGET atl_apitest DESTINATION reactos/bin FOR all)
|