mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
76697d8da4
- Add explorer, umpnpmgr, userinit and winhlp32 to livecd. svn path=/branches/cmake-bringup/; revision=49232
23 lines
No EOL
493 B
CMake
23 lines
No EOL
493 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_definitions(
|
|
-D__ROS_LONG64__
|
|
-D_CRT_NONSTDC_NO_DEPRECATE
|
|
-Dfileno=_fileno
|
|
-Disatty=_isatty)
|
|
|
|
add_executable(winhlp32
|
|
callback.c
|
|
hlpfile.c
|
|
macro.c
|
|
string.c
|
|
winhelp.c
|
|
lex.yy.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_livecd_target(winhlp32 reactos) |