From 8a5dda8f418ba7d521df4ad8b72c64faf6215ab7 Mon Sep 17 00:00:00 2001 From: Hang Cui Date: Mon, 3 Nov 2025 10:51:52 -0800 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 ```