./easy-builder -DBUNDLE_LIBRARIES=ON
```
-Note: always do bundling on a clean system without unrelated software installed.
+Note: Always do bundling on a clean and fresh system without unrelated software installed.
## Advanced compilation
```sh
cmake -G "Unix Makefiles" -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug
cmake --build build -- -j$(nproc)
+cmake --install build
```
```sh
cmake -G "Unix Makefiles" -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake --build build -- -j$(nproc)
+cmake --install build
```
Note: macOS users need to build built-in GtkGLExt before building NetRadiant:
cmake --build build -- -j$(nproc) builtins
cmake -G "Unix Makefiles" -S. -Bbuild
cmake --build build -- -j$(nproc)
+cmake --install build
```
```sh
cmake --build build --target binaries -- -j$(nproc)
+cmake --install build
```
You should still periodically update gamepacks:
```sh
cmake --build build --target gamepacks
+cmake --install build
```
* `install` Install files.
+```sh
+cmake --install build
+```
+
## Additonnal information