Skip to content

Commit b07b9c8

Browse files
committed
The lib dir wasn't auto-created
+ .gitignore was too specific + README changes
1 parent 310ebeb commit b07b9c8

File tree

6 files changed

+7
-90
lines changed

6 files changed

+7
-90
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SFML-master/
1+
SFML-master*/
22
lib/
33
*.zip
44

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,11 @@ Your mileage may vary.
9393

9494
#### 4. Run `build`
9595

96-
You can specify `CRT=dll` to build the original ("half") static libs, and
97-
`DEBUG=1` for a debug version. E.g.:
96+
With no options, it will build a non-debug ("release") version (with -O2 and
97+
`NDEBUG`), against the static MSVC runtime libs (`-MT`).
9898

99-
build
100-
101-
would build the fully static libs in release mode (-DNDEBUG -O2), while
99+
Optionally, you can specify `CRT=dll` to build the original ("half") static
100+
SFML libs, or `DEBUG=1` for a debug version, e.g.:
102101

103102
build CRT=dll DEBUG=1
104103

tooling/bbMakefile.msvc

+2-1
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,13 @@ info:
193193
@echo "Build mode: DEBUG=$(DEBUG), CRT=$(CRT), SFML=$(SFML)"
194194

195195
_mkdir = test -d $@ || mkdir $@
196-
mk_outdirs: $(outdir) $(vroot) $(objdir) $(ifcdir) $(exedir); @#
196+
mk_outdirs: $(outdir) $(vroot) $(objdir) $(ifcdir) $(libdir) $(exedir) ; @#
197197
# Double colons in order to not fail on possibly identical dirs:
198198
$(outdir)::; @$(_mkdir)
199199
$(vroot)::; @$(_mkdir)
200200
$(objdir)::; @$(_mkdir)
201201
$(ifcdir)::; @$(_mkdir)
202+
$(libdir)::; @$(_mkdir)
202203
$(exedir)::; @$(_mkdir)
203204

204205
collect_sources:

tooling/package.template/README.txt

-1
This file was deleted.

tooling/package.template/share/doc/SFML/license.md

-9
This file was deleted.

tooling/package.template/share/doc/SFML/readme.md

-73
This file was deleted.

0 commit comments

Comments
 (0)