1 2set_cpp(WITH_RUNTIME) 3add_definitions(-D_ATL_NO_EXCEPTIONS) 4 5include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl) 6 7add_executable(shlextdbg shlextdbg.cpp shlextdbg.rc) 8 9set_module_type(shlextdbg win32cui UNICODE) 10target_link_libraries(shlextdbg uuid) 11add_importlibs(shlextdbg ole32 comctl32 shell32 user32 msvcrt kernel32) 12add_cd_file(TARGET shlextdbg DESTINATION reactos/system32 FOR all) 13