Author: spetreolle Date: Sat Sep 25 17:40:02 2010 New Revision: 48880
URL: http://svn.reactos.org/svn/reactos?rev=48880&view=rev Log: [CMAKE] Add cmd to build.
Added: branches/cmake-bringup/base/shell/cmd/CMakeLists.txt (with props) Modified: branches/cmake-bringup/base/CMakeLists.txt branches/cmake-bringup/base/shell/CMakeLists.txt
Modified: branches/cmake-bringup/base/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/base/CMakeLists.tx... ============================================================================== --- branches/cmake-bringup/base/CMakeLists.txt [iso-8859-1] (original) +++ branches/cmake-bringup/base/CMakeLists.txt [iso-8859-1] Sat Sep 25 17:40:02 2010 @@ -2,5 +2,5 @@ add_subdirectory(applications) #add_subdirectory(services) add_subdirectory(setup) -#add_subdirectory(shell) +add_subdirectory(shell) #add_subdirectory(system)
Modified: branches/cmake-bringup/base/shell/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/base/shell/CMakeLi... ============================================================================== --- branches/cmake-bringup/base/shell/CMakeLists.txt [iso-8859-1] (original) +++ branches/cmake-bringup/base/shell/CMakeLists.txt [iso-8859-1] Sat Sep 25 17:40:02 2010 @@ -1,4 +1,4 @@
-#add_subdirectory(cmd) +add_subdirectory(cmd) #add_subdirectory(explorer) #add_subdirectory(explorer_new)
Added: branches/cmake-bringup/base/shell/cmd/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/base/shell/cmd/CMa... ============================================================================== --- branches/cmake-bringup/base/shell/cmd/CMakeLists.txt (added) +++ branches/cmake-bringup/base/shell/cmd/CMakeLists.txt [iso-8859-1] Sat Sep 25 17:40:02 2010 @@ -1,0 +1,77 @@ +include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine) + +add_definitions(-DANONYMOUSUNIONS) +add_definitions(-D_DEBUG_MEM) + +list(APPEND SOURCE + cmd.rc + main.c) + +add_pch(cmd ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h SOURCE) + +list(APPEND SOURCE + alias.c + assoc.c + attrib.c + batch.c + beep.c + call.c + chcp.c + choice.c + cls.c + cmd.c + cmddbg.c + cmdinput.c + cmdtable.c + color.c + console.c + copy.c + date.c + del.c + delay.c + dir.c + dirstack.c + echo.c + error.c + filecomp.c + for.c + free.c + goto.c + history.c + if.c + internal.c + label.c + locale.c + memory.c + misc.c + mklink.c + move.c + msgbox.c + parser.c + path.c + pause.c + prompt.c + redir.c + ren.c + replace.c + screen.c + set.c + setlocal.c + shift.c + start.c + strtoclr.c + time.c + timer.c + title.c + type.c + ver.c + verify.c + vol.c + where.c + window.c) + +add_executable(cmd ${CMAKE_CURRENT_BINARY_DIR}/cmd_precomp.h.gch ${SOURCE}) +set_module_type(cmd win32cui) +set_unicode(cmd yes) +target_link_libraries(cmd oldnames wine) +add_importlibs(cmd advapi32 user32 msvcrt)
Propchange: branches/cmake-bringup/base/shell/cmd/CMakeLists.txt ------------------------------------------------------------------------------ svn:eol-style = native