f62eb125cf
- added a -host_trig command line option that creates a new host instance without blocking user input. - the build/install python scripts will no longer internally build platform specific shell scripts; instead, they will now copy the necessary templates from the /templates folder. - modified both build.py and install.py to include windows deployment support so this app can now be built/installed on windows based host. note: i decided to have it "daemonized" as a scheduled task that runs on system start instead of service because it is simply easier to do it this way and will not involve any 3rd party libraries or apps. - added the src/applink.c file to the source code since it is needed for windows openssl support. - changed over all references of "endl" to "Qt::endl" to avoid depreciation errors/warnings.
5 lines
164 B
Bash
5 lines
164 B
Bash
#!/bin/sh
|
|
export QTDIR=$install_dir
|
|
export QT_PLUGIN_PATH=$install_dir
|
|
export LD_LIBRARY_PATH="$install_dir/lib:\$LD_LIBRARY_PATH"
|
|
$install_dir/$app_target $1 $2 $3 |