* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / base / applications / mspaint / CMakeLists.txt
1
2 list(APPEND SOURCE
3 dialogs.c
4 dib.c
5 drawing.c
6 history.c
7 main.c
8 mouse.c
9 palette.c
10 registry.c
11 scrollbox.c
12 selection.c
13 sizebox.c
14 textedit.c
15 toolsettings.c
16 winproc.c
17 precomp.h)
18
19 add_executable(mspaint ${SOURCE} rsrc.rc)
20 set_module_type(mspaint win32gui UNICODE)
21 add_importlibs(mspaint comdlg32 shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32)
22 add_pch(mspaint precomp.h SOURCE)
23 add_cd_file(TARGET mspaint DESTINATION reactos/system32 FOR all)