[CMAKE] Get rid of the set_cpp macro
[reactos.git] / base / applications / drwtsn32 / CMakeLists.txt
1
2 PROJECT(drwtsn32)
3
4 include_directories(
5 ${REACTOS_SOURCE_DIR}/sdk/lib/atl
6 ${REACTOS_SOURCE_DIR}/sdk/lib/udmihelp)
7
8 list(APPEND CPP_SOURCE
9 drwtsn32.cpp
10 main.cpp
11 stacktrace.cpp
12 sysinfo.cpp
13 drwtsn32.h
14 precomp.h)
15
16 add_executable(drwtsn32 ${CPP_SOURCE} drwtsn32.rc)
17 add_pch(drwtsn32 precomp.h CPP_SOURCE)
18 set_module_type(drwtsn32 win32gui UNICODE)
19 target_link_libraries(drwtsn32 udmihelp cppstl)
20 set_target_cpp_properties(drwtsn32 WITH_EXCEPTIONS)
21 add_importlibs(drwtsn32 dbghelp psapi advapi32 shell32 shlwapi msvcrt user32 kernel32 ntdll)
22 add_cd_file(TARGET drwtsn32 DESTINATION reactos/system32 FOR all)