96f5f3c7db0b0f15f88123084e7ee25fd096ea16
[reactos.git] / reactos / base / applications / wordpad / CMakeLists.txt
1
2 remove_definitions(-D_WIN32_IE=0x600)
3
4 add_definitions(-D__ROS_LONG64__)
5
6 include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
7
8 list(APPEND SOURCE
9 olecallback.c
10 print.c
11 registry.c
12 wordpad.c
13 rsrc.rc)
14
15 add_executable(wordpad ${SOURCE})
16
17 set_module_type(wordpad win32gui)
18 target_link_libraries(wordpad wine uuid)
19 add_importlibs(wordpad comdlg32 ole32 shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32 ntdll)
20 add_cd_file(TARGET wordpad DESTINATION reactos/system32 FOR all)