Working on merging luprex and integration into one repository

This commit is contained in:
2024-09-30 18:15:27 -04:00
parent dcaff1de4a
commit 7e9040d9ce
8 changed files with 25 additions and 30 deletions

19
rebuild-config.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/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