mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
0b107f2e30
- Fix errors if a theme api is missing. - Add callback to functions for drawing themed transparent background. - Fix drawing glitch when theming is applied. - Redraw on theme change: automatically redraw the window if the theme is changed while the application is active. - Colours are now declared though RGB() macro. - Removed safe DS_SHELLFONT declaration.
25 lines
551 B
CMake
25 lines
551 B
CMake
|
|
add_definitions(-DDISABLE_HTMLHELP_SUPPORT=1)
|
|
|
|
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)
|