[CMAKE]
authorSylvain Petreolle <spetreolle@yahoo.fr>
Sat, 25 Sep 2010 17:40:02 +0000 (17:40 +0000)
committerSylvain Petreolle <spetreolle@yahoo.fr>
Sat, 25 Sep 2010 17:40:02 +0000 (17:40 +0000)
Add cmd to build.

svn path=/branches/cmake-bringup/; revision=48880

base/CMakeLists.txt
base/shell/CMakeLists.txt
base/shell/cmd/CMakeLists.txt [new file with mode: 0644]

index a218a43..d8da807 100644 (file)
@@ -2,5 +2,5 @@
 add_subdirectory(applications)
 #add_subdirectory(services)
 add_subdirectory(setup)
-#add_subdirectory(shell)
+add_subdirectory(shell)
 #add_subdirectory(system)
index 426b7a5..09fc0fb 100644 (file)
@@ -1,4 +1,4 @@
 
-#add_subdirectory(cmd)
+add_subdirectory(cmd)
 #add_subdirectory(explorer)
 #add_subdirectory(explorer_new)
diff --git a/base/shell/cmd/CMakeLists.txt b/base/shell/cmd/CMakeLists.txt
new file mode 100644 (file)
index 0000000..d2492e0
--- /dev/null
@@ -0,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)
\ No newline at end of file