reactos/base/applications/winhlp32/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

28 lines
604 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_definitions(
-D__ROS_LONG64__
-D_CRT_NONSTDC_NO_DEPRECATE
-Dfileno=_fileno
-Disatty=_isatty)
list(APPEND SOURCE
callback.c
hlpfile.c
macro.c
macro.lex.yy.c
winhelp.c
winhelp.h)
add_executable(winhlp32
${SOURCE}
string.c
rsrc.rc)
set_module_type(winhlp32 win32gui)
target_link_libraries(winhlp32 wine)
add_importlibs(winhlp32 user32 gdi32 shell32 comctl32 comdlg32 msvcrt kernel32 ntdll)
add_pch(winhlp32 winhelp.h SOURCE)
add_cd_file(TARGET winhlp32 DESTINATION reactos FOR all)