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