Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/petasis/tkdnd

TkDND is an extension that adds native drag & drop capabilities to the Tk toolkit
https://github.com/petasis/tkdnd

dnd drag-and-drop tcl tcltk tkdnd

Last synced: 3 months ago
JSON representation

TkDND is an extension that adds native drag & drop capabilities to the Tk toolkit

Awesome Lists containing this project

README

        

In order to build TkDND with cmake, the following software is required:

a) cmake, version 3.2 or newer.

Compiling TkDND with cmake:
-------------------------------------------------------

1) Change the working directory to "cmake".

2) Execute the following commands (all commands must be executed from the
"cmake" directory):

cmake -E make_directory build
cmake -E chdir build cmake -DCMAKE_INSTALL_PREFIX=../runtime ../..
cmake --build build --target all --clean-first
cmake --build build --target install

3) Compile for 64 bits under Windows (for Visual Studio 2017):

cmake -E make_directory build_64
cmake -E chdir build_64 cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_INSTALL_PREFIX=../runtime ../..
cmake --build build_64 --config Release --target install

-G "..." can be set to any of the available 64-bit generators available under
the platform.

4) Specify Tcl at a non standard location:

cmake -E make_directory build_64
cmake -E chdir build_64 cmake -G "Visual Studio 15 2017 Win64" -Dwith-tcl=C:/TclApps/Tcl64/lib -DCMAKE_INSTALL_PREFIX=../runtime ../..
cmake --build build_64 --config Release --target install