1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
set root=<ROOT>
set kind=Release
set binsrc=
mkdir %root%
mkdir %root%\lib
mkdir %root%\bin
mkdir %root%\include
cd cmd
cd dot\%kind%
copy dot.exe %root%\bin
copy dot.exe %root%\bin\neato.exe
copy dot.exe %root%\bin\twopi.exe
copy dot.exe %root%\bin\circo.exe
copy dot.exe %root%\bin\fdp.exe
cd ..\..
cd lefty\%kind%
copy lefty.exe %root%\bin
cd ..\..
cd dotty\%kind%
copy dotty.exe %root%\bin
cd ..\..
cd lneato\%kind%
copy lneato.exe %root%\bin
cd ..\..
cd tools\%kind%
copy Acyclic.exe %root%\bin
copy ccomps.exe %root%\bin
copy gvcolor.exe %root%\bin
copy gc.exe %root%\bin
copy nop.exe %root%\bin
copy sccmap.exe %root%\bin
copy tred.exe %root%\bin
copy unflatten.exe %root%\bin
copy gxl2dot.exe %root%\bin
copy dijkstra.exe %root%\bin
copy bcomps.exe %root%\bin
copy gvpack.exe %root%\bin
copy gxl2dot.exe %root%\bin\dot2gxl.exe
cd ..\..
copy gvui\gvui.exe %root%\bin
cd dotty
copy dotty.lefty %root%\bin
copy dotty_draw.lefty %root%\bin
copy dotty_edit.lefty %root%\bin
copy dotty_layout.lefty %root%\bin
copy dotty_ui.lefty %root%\bin
cd ..
cd ..\lib\lib\%kind%
copy ingraphs.lib %root%\lib
copy agraph.lib %root%\lib
copy cdt.lib %root%\lib
copy circogen.lib %root%\lib
copy common.lib %root%\lib
copy dotgen.lib %root%\lib
copy fdpgen.lib %root%\lib
copy gd.lib %root%\lib
copy graph.lib %root%\lib
copy gvc.lib %root%\lib
copy neatogen.lib %root%\lib
copy pack.lib %root%\lib
copy pathplan.lib %root%\lib
copy twopigen.lib %root%\lib
cd ..\..\..
cd third-party\lib
copy *.dll %root%\bin
copy ft.lib %root%\lib
copy jpeg.lib %root%\lib
copy libexpat.lib %root%\lib
copy libexpatw.lib %root%\lib
copy libz.lib %root%\lib
copy png.lib %root%\lib
copy z.lib %root%\lib
cd ..\..
copy lib\agraph\agraph.h %root%\include
copy lib\cdt\ast_common.h %root%\include
copy lib\cdt\cdt.h %root%\include
copy lib\circogen\circo.h %root%\include
copy lib\common\arith.h %root%\include
copy lib\common\globals.h %root%\include
copy lib\common\const.h %root%\include
copy lib\common\logic.h %root%\include
copy lib\common\macros.h %root%\include
copy lib\common\render.h %root%\include
copy lib\common\types.h %root%\include
copy lib\common\utils.h %root%\include
copy lib\common\geom.h %root%\include
copy lib\common\geomprocs.h %root%\include
copy lib\common\color.h %root%\include
copy lib\common\memory.h %root%\include
copy lib\dotgen\dot.h %root%\include
copy lib\dotgen\dotprocs.h %root%\include
copy lib\fdpgen\fdp.h %root%\include
copy lib\gvc\gvc.h %root%\include
copy lib\gvc\gvcext.h %root%\include
copy lib\gvc\gvcint.h %root%\include
copy lib\gvc\gvcproc.h %root%\include
copy lib\gvc\gvcjob.h %root%\include
copy lib\gvc\gvplugin.h %root%\include
copy lib\gvc\gvplugin_layout.h %root%\include
copy lib\gvc\gvplugin_render.h %root%\include
copy lib\gvc\gvplugin_textlayout.h %root%\include
copy lib\neatogen\adjust.h %root%\include
copy lib\neatogen\neato.h %root%\include
copy lib\neatogen\neatoprocs.h %root%\include
copy lib\pack\pack.h %root%\include
copy lib\twopigen\circle.h %root%\include
copy lib\gd\gd.h %root%\include
copy lib\gd\gd_io.h %root%\include
copy lib\gd\gdfx.h %root%\include
copy lib\graph\graph.h %root%\include
copy lib\pathplan\pathgeom.h %root%\include
copy lib\pathplan\pathplan.h %root%\include
copy lib\pathplan\pathutil.h %root%\include
copy lib\pathplan\vis.h %root%\include
copy lib\pathplan\vispath.h %root%\include
copy lib\ingraphs\ingraphs.h %root%\include
|