reactos/base/applications/notepad/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

14 lines
340 B
CMake

list(APPEND SOURCE
dialog.c
main.c
settings.c
text.c
rsrc.rc)
add_executable(notepad ${SOURCE})
set_module_type(notepad win32gui UNICODE)
add_importlibs(notepad user32 gdi32 comctl32 comdlg32 advapi32 shell32 msvcrt kernel32)
add_pch(notepad notepad.h)
add_cd_file(TARGET notepad DESTINATION reactos/system32 FOR all)