nomad-software / tkd

GUI toolkit for the D programming language based on Tcl/Tk
MIT License
117 stars 16 forks source link

README package.json typos #14

Closed stef-k closed 10 years ago

stef-k commented 10 years ago

You may want to fix the typos at package.json (in README.me) when building for Windows (preGenerateCommands...), currently copies the same .dll.

Possible fix, you can copy paste the following:

"postGenerateCommands-windows-x86": [
    "copy $TCLTK_PACKAGE_DIR\\dist\\x86\\tcl86.dll build\\tcl86.dll /y",
    "copy $TCLTK_PACKAGE_DIR\\dist\\x86\\tk86.dll build\\tk86.dll /y",
    "copy $TCLTK_PACKAGE_DIR\\dist\\x86\\zlib1.dll build\\zlib1.dll /y",
    "xcopy $TCLTK_PACKAGE_DIR\\dist\\library build\\library /i /e /y",
],
"postGenerateCommands-windows-x86_64": [
    "copy $TCLTK_PACKAGE_DIR\\dist\\x86_64\\tcl86.dll build\\tcl86.dll /y",
    "copy $TCLTK_PACKAGE_DIR\\dist\\x86_64\\tk86.dll build\\tk86.dll /y",
    "copy $TCLTK_PACKAGE_DIR\\dist\\x86_64\\zlib1.dll build\\zlib1.dll /y",
    "xcopy $TCLTK_PACKAGE_DIR\\dist\\library build\\library /i /e /y",
],
nomad-software commented 10 years ago

Good spot, fixed.