mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
20 lines
514 B
CMake
20 lines
514 B
CMake
|
|
remove_definitions(-D_WIN32_IE=0x600)
|
|
|
|
add_definitions(-D__ROS_LONG64__)
|
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
list(APPEND SOURCE
|
|
olecallback.c
|
|
print.c
|
|
registry.c
|
|
wordpad.c
|
|
rsrc.rc)
|
|
|
|
add_executable(wordpad ${SOURCE})
|
|
|
|
set_module_type(wordpad win32gui)
|
|
target_link_libraries(wordpad wine uuid)
|
|
add_importlibs(wordpad comdlg32 ole32 shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET wordpad DESTINATION reactos/system32 FOR all)
|