Skip to content

Commit a8638c1

Browse files
committed
Recommend the simplest possible configuration and build commands
Once users wish to start customizing their build by potentially enabling optimizations, then they can learn about such differences. For now it's not useful to add this extra branch in the instructions. Let's keep it simple.
1 parent 4af7a18 commit a8638c1

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,12 @@ The template starts out very basic, but might receive additional features over t
3636
- [Qt Creator](https://doc.qt.io/qtcreator/creator-project-cmake.html)
3737
3838
Using CMake from the command line is straightforward as well.
39+
Be sure to run these commands in the root directory of the project you just created.
3940
40-
For a single-configuration generator (typically the case on Linux and macOS):
4141
```
42-
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
42+
cmake -B build
4343
cmake --build build
4444
```
45-
46-
For a multi-configuration generator (typically the case on Windows):
47-
```
48-
cmake -S . -B build
49-
cmake --build build --config Release
50-
```
5145
1. Enjoy!
5246
5347
## Upgrading SFML

0 commit comments

Comments
 (0)