Revision 88f6764e6ced31a9a0368ab6dc064f79243bf214 authored by Axel1092 on 04 May 2023, 11:24:23 UTC, committed by GitHub on 04 May 2023, 11:24:23 UTC
* Fixed Houdini actor locations

* Matched buildings and road position

* review fixes
1 parent 1a908dd
Raw File
Run.sh
BUILD_DIR=build/

if [ -d $BUILD_DIR ];
then
    echo "Deleting existing ${BUILD_DIR} directory." 
    rm -r $BUILD_DIR
fi

echo "Creating ${BUILD_DIR} directory."
mkdir $BUILD_DIR
cd $BUILD_DIR

LIB_LIBOSMSCOUT_INCLUDE=/home/aollero/Downloads/libosmcout/libosmscout-master/libosmscout-map-svg/include/
LIB_LIBOSMSCOUT_LIBS=/home/aollero/Downloads/libosmcout/libosmscout-master/build/libosmscout-map-svg


cmake -DCMAKE_CXX_FLAGS="-std=c++17 -g -Og" ..
make

./osm-world-renderer
back to top