Skip to content

Commit

Permalink
Added linux dist files.
Browse files Browse the repository at this point in the history
  • Loading branch information
gk7huki committed Feb 6, 2020
1 parent 5772674 commit bdf10b6
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ linux_bin_dist:
rm $(DIST_PATH)/rv_house/*.dll
rm -rf $(DIST_PATH)/rv_house/imageformats
cp -p dist_files/gpl.txt $(DIST_PATH)/rv_house
cp -p build/linux2/Release/rv_house $(DIST_PATH)/rv_house
cp -p build/linux2/Release/rv_house $(DIST_PATH)/rv_house.32
cd $(DIST_PATH); tar -cvf rv_house_linux.tar --exclude '.*' rv_house; gzip -f rv_house_linux.tar

win_bin_dist:
Expand Down
Binary file not shown.
Binary file added dist_files/lib/libACE-6.3.3.so
Binary file not shown.
1 change: 1 addition & 0 deletions dist_files/lib/libQtCore.so.4
Binary file added dist_files/lib/libQtCore.so.4.8.7
Binary file not shown.
1 change: 1 addition & 0 deletions dist_files/lib/libQtGui.so.4
Binary file added dist_files/lib/libQtGui.so.4.8.7
Binary file not shown.
Binary file not shown.
15 changes: 15 additions & 0 deletions dist_files/rv_house
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

DIR="$(dirname "$(readlink -f "$0")")"

cd "$DIR"

LIB_DIR="$DIR/lib"

exec="./rv_house.32"

export LD_LIBRARY_PATH=$LIB_DIR:$LD_LIBRARY_PATH
export QT_PLUGIN_PATH=$LIB_DIR/qt4/plugins
export GTK_PATH=$LIB_DIR/gtk-2.0/2.10.0

$exec $@

0 comments on commit bdf10b6

Please sign in to comment.