jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
moret 5ab2f8e268 New JackRouter.dll, need to be tested on 64bits platform 16 years ago
..
src Add missing Mingw10.dll in windows setup - Add extra info in windows installer ReadMe 16 years ago
JackRouter.dll New JackRouter.dll, need to be tested on 64bits platform 16 years ago
JackRouter.ini Restore old JackRouter, libjackservermp and libjackmp on windows. 17 years ago
README Correct strange stl behaviour at runtime on windows - correct 'undefined reference' for alsaadapter - rebuild jackrouter.dll from a new libjack.lib 16 years ago
jack.ci New JackRouter.dll, need to be tested on 64bits platform 16 years ago

README

This folder contains a script to create an installer for windows.

It uses 'CreateInstall Free'(http://www.createinstall.com), a little software allowing to make simple installers.

You can use the 'jack.ci' script to make the installer. For that, you need to build the Code::Blocks workspace in order to have '.exe' and libraries. You also need 'qjackctl' binaries and libraries ('qjackctl.exe', 'mingwm10.dll', 'QtCore4.dll', 'QtGui.dll' and 'QtXml4.dll'). You can recompile qjackctl with qt4 or directly get the binaries. The five files are expected in the 'qjackctl' folder.

If you need libjack.lib and libjackserver.lib to link with in MS Visual Studio, you can use the MS Tool lib.exe to create the .lib file from de .def.
Just use : 'lib /DEF:libjackserver.def /OUT:libjackserver.lib' and 'lib /DEF:libjack.def /OUT:libjack.lib' to create the lib file.
Or you can also use dlltool, from mingw suite :
Just use : 'dlltool -l libjackserver.lib -D libjackserver.dll -d libjackserver.def' and 'dlltool -l libjack.lib -D libjack.dll -d libjack.def'

Once all binaries available, just execute the script in 'CreateInstall' to make 'setup.exe'.
The setup will copy all binaries to a specified folder, register the JackRouter (in order to have it in the ASIO drivers list) and create some shortcuts in the start menu.
It's a good and proper way to get jack installed on windows.