1
2if(DBG)
3    add_definitions(-D_DEBUG=1)
4endif()
5
6list(APPEND SOURCE
7    dialog.c
8    main.c
9    printing.c
10    settings.c
11    text.c
12    notepad.h)
13
14add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/notepad.ico)
15add_executable(notepad ${SOURCE} rsrc.rc)
16set_module_type(notepad win32gui UNICODE)
17add_importlibs(notepad user32 gdi32 comctl32 comdlg32 advapi32 shell32 msvcrt kernel32)
18add_pch(notepad notepad.h SOURCE)
19add_cd_file(TARGET notepad DESTINATION reactos FOR all)
20add_cd_file(TARGET notepad DESTINATION reactos/system32 FOR all)
21