diff --git a/README.md b/README.md index 4aa5095..72b8774 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,6 @@ docker compose up -d # Shutdown the Docker container docker compose down - ``` ### Access the Ubuntu 20.04 GUI environment @@ -26,5 +25,18 @@ docker compose down # Open http://localhost:46080/vnc.html in your web browser to connect to # the Ubuntu 20.04 desktop running inside the Docker container. + +cd ~/workspace/slam_in_autonomous_driving + +# Compile g2o first +cd ~/workspace/slam_in_autonomous_driving/thirdparty/g2o/ +cmake . +make -j8 + +# Compile the source code +cd ~/workspace/slam_in_autonomous_driving +mkdir build && cd build +cmake .. +make -j8 ```