mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
055c5a9bb7
Nowadays ReactOS includes support for htmlhelp.h and a working implementation of HHCTRL.OCX. Although current imported HHCTRL.OCX suffers of this issue: https://bugs.winehq.org/show_bug.cgi?id=47379 See also CORE-15019 + Revert 'intptr_t' to 'size_t'.
23 lines
504 B
CMake
23 lines
504 B
CMake
|
|
list(APPEND SOURCE
|
|
convert.c
|
|
fun_ieee.c
|
|
rpn_ieee.c
|
|
utl_ieee.c
|
|
winmain.c
|
|
htmlhelp.c
|
|
theme.c
|
|
calc.h)
|
|
|
|
file(GLOB calc_rc_deps res/*.*)
|
|
add_rc_deps(resource.rc ${calc_rc_deps})
|
|
add_executable(calc ${SOURCE} resource.rc)
|
|
set_module_type(calc win32gui UNICODE)
|
|
add_importlibs(calc advapi32 comctl32 user32 shell32 gdi32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(calc ntdll)
|
|
endif()
|
|
|
|
add_pch(calc calc.h SOURCE)
|
|
add_cd_file(TARGET calc DESTINATION reactos/system32 FOR all)
|