[CMAKE]
[reactos.git] / base / applications / wordpad / CMakeLists.txt
1 list(APPEND SOURCE
2 olecallback.c
3 print.c
4 registry.c
5 wordpad.c
6 rsrc.rc)
7
8 add_definitions(
9 -D__ROS_LONG64__
10 -D_DLL -D__USE_CRTIMP)
11
12 include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
13
14 set_rc_compiler()
15
16 add_executable(wordpad ${SOURCE})
17 set_module_type(wordpad win32gui)
18
19 target_link_libraries(wordpad wine uuid)
20
21 add_importlibs(wordpad comdlg32 ole32 shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32 ntdll)
22
23 add_cab_target(wordpad 1)