Use lite-xl as project and exacutable names

This commit is contained in:
redtide
2021-06-25 22:54:02 +02:00
parent cc568e65fc
commit df63775dca
7 changed files with 13 additions and 14 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ if [[ $* == *windows* ]]; then
echo "cross compiling for windows is not yet supported"
exit 1
else
outfile="lite"
outfile="lite-xl"
compiler="gcc"
cxxcompiler="g++"
fi
@@ -20,7 +20,7 @@ fi
lib/font_renderer/build.sh || exit 1
libs=libfontrenderer.a
echo "compiling lite..."
echo "compiling lite-xl..."
for f in `find src -name "*.c"`; do
$compiler -c $cflags $f -o "${f//\//_}.o"
if [[ $? -ne 0 ]]; then