Skip to content

Commit 8a63fa3

Browse files
committedOct 1, 2020
Pushed a bunch of changes collecting dust
1 parent 735f5da commit 8a63fa3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2698
-463
lines changed
 

‎.gitignore

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ dist/Win64/
1212
dist/*.exe
1313
dist/*.zip
1414
.directory
15+
Makefile
16+
compile_commands.json
17+
compile_flags.txt
18+
ex.err
1519
all.mk
1620
all.txt
1721
base.mk
1822
base.txt
1923
core.mk
2024
core.txt
25+
html.mk
26+
html.txt
2127
xml.mk
2228
xml.txt
23-
ex.err
24-
Makefile
2529
*.swp

‎BUILD.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Extract
44

5-
tar xzf wxWidgets-3.1.0.tar.gz
6-
cd wxWidgets-3.1.0/build/
5+
tar xzf wxWidgets-3.1.2.tar.gz
6+
cd wxWidgets-3.1.2/build/
77

88
## Build
99

@@ -27,18 +27,18 @@
2727

2828
## Extract
2929

30-
7z x wxWidgets-3.1.0.zip
31-
cd wxWidgets-3.1.0/build/msw/
30+
7z x wxWidgets-3.1.2.zip
31+
cd wxWidgets-3.1.2/build/msw/
3232

3333
## Build
3434

3535
### Debug
3636

3737
mingw32-make -f makefile.gcc BUILD=debug SHARED=0 UNICODE=1 clean
38-
mingw32-make -f makefile.gcc BUILD=debug SHARED=0 UNICODE=1
38+
mingw32-make -f makefile.gcc BUILD=debug SHARED=0 UNICODE=1 -j4
3939

4040
### Release
4141

4242
mingw32-make -f makefile.gcc BUILD=release SHARED=0 UNICODE=1 clean
43-
mingw32-make -f makefile.gcc BUILD=release SHARED=0 UNICODE=1
43+
mingw32-make -f makefile.gcc BUILD=release SHARED=0 UNICODE=1 -j4
4444

0 commit comments

Comments
 (0)