[CMAKE]
[reactos.git] / reactos / base / applications / notepad / CMakeLists.txt
1
2 list(APPEND SOURCE
3 dialog.c
4 main.c
5 settings.c
6 text.c
7 rsrc.rc)
8
9 add_executable(notepad ${SOURCE})
10 set_module_type(notepad win32gui UNICODE)
11 add_importlibs(notepad user32 gdi32 comctl32 comdlg32 advapi32 shell32 msvcrt kernel32)
12 add_pch(notepad notepad.h)
13 add_cd_file(TARGET notepad DESTINATION reactos/system32 FOR all)