reactos/base/applications/regedit/CMakeLists.txt
Amine Khaldi 12c54162f5 [CMAKE]
- Add almost all base applications (some are included but disabled too). This is the work of a human being, so no bots BS, no rbuildism, every single module was tested, built with the new build system mentality (no defines and linked libs redundancy, use of the the available macros, the linked libs are carefully selected, the dependencies are correctly tracked... etc)
- Brought to you by Alexey Komarov, with my humble review.

svn path=/branches/cmake-bringup/; revision=48973
2010-10-03 22:26:21 +00:00

32 lines
585 B
CMake

set_unicode()
include_directories(BEFORE .)
list(APPEND SOURCE
about.c
childwnd.c
edit.c
find.c
framewnd.c
hexedit.c
listview.c
main.c
regedit.c
regproc.c
security.c
treeview.c
regedit.rc)
add_pch(regedit ${CMAKE_CURRENT_SOURCE_DIR}/regedit.h ${SOURCE})
add_executable(regedit ${CMAKE_CURRENT_BINARY_DIR}/regedit_regedit.h.gch ${SOURCE})
set_module_type(regedit win32gui)
target_link_libraries(regedit uuid)
add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt)
#add_subdirectory(clb)