Skip to content

Commit

Permalink
Update COMPILE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide authored May 23, 2023
1 parent 7346a58 commit 47eb727
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions COMPILE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Then compile using cmake (qmake is NOT supported):

```shell
cmake -S src/PlotJuggler -B build/PlotJuggler -DCMAKE_INSTALL_PREFIX=install
cmake --build build/PlotJuggler --config RelWithDebInfo --parallel --target install
cmake --build build/PlotJuggler --config RelWithDebInfo --target install
```

## Optional: build with Conan
Expand All @@ -45,7 +45,7 @@ cmake -S src/PlotJuggler -B build/PlotJuggler \
-DCMAKE_INSTALL_PREFIX=install \
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW

cmake --build build/PlotJuggler --config RelWithDebInfo --parallel --target install
cmake --build build/PlotJuggler --config RelWithDebInfo --target install
```

## Deploy as an AppImage
Expand Down Expand Up @@ -117,7 +117,7 @@ Then compile using cmake:

```shell
cmake -S src/PlotJuggler -B build/PlotJuggler -DCMAKE_INSTALL_PREFIX=install
cmake --build build/PlotJuggler --config RelWithDebInfo --parallel --target install
cmake --build build/PlotJuggler --config RelWithDebInfo --target install
```

# Compile in Windows
Expand Down Expand Up @@ -159,7 +159,7 @@ cmake -G "Visual Studio 16" ^
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW
cmake --build build/PlotJuggler --config Release --parallel --target install
cmake --build build/PlotJuggler --config Release --target install
```

## Build with vcpkg
Expand All @@ -174,7 +174,7 @@ cmake -G "Visual Studio 16" ^
-DCMAKE_TOOLCHAIN_FILE=%CMAKE_TOOLCHAIN% ^
-DCMAKE_INSTALL_PREFIX=%cd%/install
cmake --build build/PlotJuggler --config Release --parallel --target install
cmake --build build/PlotJuggler --config Release --target install
```

## Create a Windows installer
Expand Down

0 comments on commit 47eb727

Please sign in to comment.