You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
7 lines
257 B
Bash
7 lines
257 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ ! -f ~/.lldbinit ]; then
|
||
|
|
echo -ne "settings set target.inline-breakpoint-strategy always\n" > ~/.lldbinit
|
||
|
|
echo -ne "command script import \"`pwd`/../../../Extras/LLDBDataFormatters/UEDataFormatters_2ByteChars.py\"\n" >> ~/.lldbinit
|
||
|
|
fi
|