reactos/base/applications/regedit/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

28 lines
577 B
CMake

include_directories(BEFORE .)
list(APPEND SOURCE
about.c
childwnd.c
edit.c
error.c
find.c
framewnd.c
hexedit.c
listview.c
main.c
regedit.c
regproc.c
security.c
settings.c
treeview.c
regedit.rc)
add_executable(regedit ${SOURCE})
set_module_type(regedit win32gui UNICODE)
target_link_libraries(regedit uuid)
add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32)
add_pch(regedit regedit.h)
add_cd_file(TARGET regedit DESTINATION reactos FOR all)
#add_subdirectory(clb)