From 20af111299059fea7cc02468775aa8dd4029f2c7 Mon Sep 17 00:00:00 2001 From: jyelon Date: Wed, 2 Oct 2024 13:52:22 -0400 Subject: [PATCH] More work on clean install --- .gitignore | 1 + rebuild-config.sh | 19 ------------------- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100755 rebuild-config.sh diff --git a/.gitignore b/.gitignore index e413afb2..4ec87264 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ a.out gprof.out gmon.out .vsconfig +Integration.code-workspace *~ \#*# diff --git a/rebuild-config.sh b/rebuild-config.sh deleted file mode 100755 index 3e67a47d..00000000 --- a/rebuild-config.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - - -# -# Fix the file 'lpx-paths.hpp', which contains the paths for the luprex -# DLL and the luprex root path. -# - -if [ -d c:/luprex ] ; then - LUPREX=c:/integration/luprex - DLL=$LUPREX/build/visual/luprexlib.dll -else - LUPREX=$HOME/integration/luprex - DLL=$LUPREX/build/linux/luprexlib.so -fi - -echo '#define LUPREX_DLL_PATH "'$DLL'"' > Source/Integration/lpx-paths.hpp -echo '#define LUPREX_ROOT_PATH "'$LUPREX'"' >> Source/Integration/lpx-paths.hpp -