mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-11 08:59:36 +00:00
23 lines
867 B
Batchfile
23 lines
867 B
Batchfile
:: This is default bat run script of The CQtDeployer project.
|
|
:: This file contains key word that will replaced after deploy project.
|
|
|
|
:: ####################################################################
|
|
|
|
:: LIB_PATH - are releative path to libraryes of a deployed distribution.
|
|
:: SYSTEM_LIB_PATH - are releative path to system libraryes of a deployed distribution.
|
|
:: BASE_NAME - are base name of the executable that will be launched after run this script.
|
|
:: CUSTOM_SCRIPT_BLOCK - This is code from the customScript option
|
|
:: RUN_COMMAND - This is command for run application. Requred BASE_DIR variable.
|
|
|
|
:: ####################################################################
|
|
|
|
@echo off
|
|
SET BASE_DIR=%~dp0
|
|
SET PATH=%BASE_DIR%LIB_PATH;%PATH%;SYSTEM_LIB_PATH
|
|
SET CQT_PKG_ROOT=%BASE_DIR%
|
|
SET CQT_RUN_FILE=%BASE_DIR%BASE_NAME.bat
|
|
|
|
CUSTOM_SCRIPT_BLOCK
|
|
|
|
RUN_COMMAND
|