mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
12c54162f5
- Add almost all base applications (some are included but disabled too). This is the work of a human being, so no bots BS, no rbuildism, every single module was tested, built with the new build system mentality (no defines and linked libs redundancy, use of the the available macros, the linked libs are carefully selected, the dependencies are correctly tracked... etc) - Brought to you by Alexey Komarov, with my humble review. svn path=/branches/cmake-bringup/; revision=48973
21 lines
477 B
CMake
21 lines
477 B
CMake
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_definitions(-D__ROS_LONG64__)
|
|
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
|
add_definitions(-Dfileno=_fileno)
|
|
add_definitions(-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)
|