Skip to content

Commit

Permalink
Change the wx library order.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgiven committed Nov 9, 2024
1 parent 949e9c2 commit a022aab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
WX_CFLAGS = $(error Required binary 'wx-config' not found.)
WX_LDFLAGS = $(error Required binary 'wx-config' not found.)
else
WX_CFLAGS := $(shell $(WX_CONFIG) --cxxflags core base adv aui richtext)
WX_LDFLAGS := $(shell $(WX_CONFIG) --libs core base adv aui richtext)
WX_CFLAGS := $(shell $(WX_CONFIG) --cxxflags base adv aui richtext core)
WX_LDFLAGS := $(shell $(WX_CONFIG) --libs base adv aui richtext core)
endif
"""
)
Expand Down

0 comments on commit a022aab

Please sign in to comment.