mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 12:12:50 +00:00
[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
This commit is contained in:
parent
40f47f612c
commit
12c54162f5
39 changed files with 570 additions and 19 deletions
16
base/applications/mmc/CMakeLists.txt
Normal file
16
base/applications/mmc/CMakeLists.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
|
||||
set_unicode()
|
||||
|
||||
list(APPEND SOURCE
|
||||
console.c
|
||||
misc.c
|
||||
mmc.c
|
||||
mmc.rc)
|
||||
|
||||
add_executable(mmcclient ${CMAKE_CURRENT_BINARY_DIR}/mmcclient_precomp.h.gch ${SOURCE})
|
||||
|
||||
add_pch(mmcclient ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
||||
|
||||
set_module_type(mmcclient win32gui)
|
||||
|
||||
add_importlibs(mmcclient user32 gdi32 comdlg32 advapi32 shell32 comctl32 msvcrt)
|
Loading…
Add table
Add a link
Reference in a new issue