[rshell]
[reactos.git] / base / applications / calc / CMakeLists.txt
1
2 add_definitions(-DDISABLE_HTMLHELP_SUPPORT=1)
3
4 add_executable(calc
5 about.c
6 convert.c
7 function.c
8 rpn.c
9 utl.c
10 winmain.c
11 resource.rc)
12
13 set_module_type(calc win32gui UNICODE)
14 add_importlibs(calc advapi32 user32 gdi32 msvcrt kernel32)
15 if(MSVC)
16 add_importlibs(calc ntdll)
17 endif()
18 add_pch(calc calc.h)
19 add_cd_file(TARGET calc DESTINATION reactos/system32 FOR all)