10 lines
286 B
Batchfile
10 lines
286 B
Batchfile
|
@echo off
|
||
|
setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
|
||
|
set script_dir_path=%~dp0
|
||
|
set script_dir_path=%script_dir_path:~0,-1%
|
||
|
|
||
|
set cmake_scripts_dir=%script_dir_path%
|
||
|
|
||
|
call "%script_dir_path%"\"@relative_path_from_libexec_dir_to_bin_dir@"\qt-cmake.bat ^
|
||
|
@script_passed_args@ %*
|