This really needs to go in a branch. It needs heavy testing and can't coincide with...
[reactos.git] / base / applications / calc / CMakeLists.txt
1
2 set_unicode()
3 set_rc_compiler()
4
5 add_definitions(-DDISABLE_HTMLHELP_SUPPORT=1)
6
7 add_executable(calc
8 about.c
9 convert.c
10 function.c
11 rpn.c
12 utl.c
13 winmain.c
14 resource.rc)
15
16 set_module_type(calc win32gui)
17 add_importlibs(calc advapi32 user32 gdi32 msvcrt kernel32)
18 if(MSVC)
19 add_importlibs(calc ntdll)
20 endif()
21
22 add_cd_file(TARGET calc DESTINATION reactos/system32 FOR all)