[USB]
[reactos.git] / reactos / base / applications / wordpad / CMakeLists.txt
1
2 include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
3
4 add_definitions(-D__ROS_LONG64__)
5
6 set_rc_compiler()
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)
21
22 if(NOT MSVC)
23 allow_warnings(wordpad)
24 endif()