forked from qt-creator/qt-creator
Fixes: Implement make install target, Step 1
Details: Moving files so that the local layout corresponds to the layout pushed by make install. Adjust Make target, modify the resource path of the loader to find the resources in the right place. All pathes are still looked up relative to binaryPath(), libs are found via relative rpath.
This commit is contained in:
11
share/qtcreator/runInTerminal.command
Executable file
11
share/qtcreator/runInTerminal.command
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
osascript >/dev/null 2>&1 <<EOF
|
||||
tell application "Terminal"
|
||||
do script "$1 $2 +$3 +\"normal $4|\"; exit"
|
||||
set currentTab to the result
|
||||
set number of columns of currentTab to $5
|
||||
set number of rows of currentTab to $6
|
||||
set position of windows whose tabs contains currentTab to {$7, $8}
|
||||
activate
|
||||
end tell
|
||||
EOF
|
||||
Reference in New Issue
Block a user