[NtUser]
[reactos.git] / reactos / base / applications / winhlp32 / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
3
4 add_definitions(
5 -D__ROS_LONG64__
6 -D_CRT_NONSTDC_NO_DEPRECATE
7 -Dfileno=_fileno
8 -Disatty=_isatty)
9
10 list(APPEND SOURCE
11 callback.c
12 hlpfile.c
13 macro.c
14 macro.lex.yy.c
15 winhelp.c
16 winhelp.h)
17
18 add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/winhelp.ico)
19 add_executable(winhlp32 ${SOURCE} string.c rsrc.rc)
20 set_module_type(winhlp32 win32gui)
21 target_link_libraries(winhlp32 wine)
22 add_importlibs(winhlp32 user32 gdi32 shell32 comctl32 comdlg32 msvcrt kernel32 ntdll)
23 add_pch(winhlp32 winhelp.h SOURCE)
24 add_cd_file(TARGET winhlp32 DESTINATION reactos FOR all)