Sync with trunk (r49303)
[reactos.git] / base / applications / regedit / CMakeLists.txt
1
2 set_unicode()
3
4 include_directories(BEFORE .)
5
6 list(APPEND SOURCE
7 about.c
8 childwnd.c
9 edit.c
10 find.c
11 framewnd.c
12 hexedit.c
13 listview.c
14 main.c
15 regedit.c
16 regproc.c
17 security.c
18 treeview.c
19 regedit.rc)
20
21 add_pch(regedit ${CMAKE_CURRENT_SOURCE_DIR}/regedit.h ${SOURCE})
22
23 add_executable(regedit ${CMAKE_CURRENT_BINARY_DIR}/regedit_regedit.h.gch ${SOURCE})
24
25 set_module_type(regedit win32gui)
26
27 target_link_libraries(regedit uuid)
28
29 add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32)
30
31 #add_subdirectory(clb)