mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
da6a705bb1
svn path=/trunk/; revision=72191
19 lines
467 B
CMake
19 lines
467 B
CMake
|
|
set_cpp(WITH_RUNTIME WITH_EXCEPTIONS)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
|
|
|
|
add_executable(atl_apitest
|
|
atltypes.cpp
|
|
CComBSTR.cpp
|
|
CComHeapPtr.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 ole32 oleaut32 advapi32 user32 msvcrt kernel32)
|
|
add_cd_file(TARGET atl_apitest DESTINATION reactos/bin FOR all)
|