File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 6666 path : ' fluxengine-testdata'
6767 - name : brew
6868 run : |
69- brew install sqlite pkg-config libusb protobuf wxwidgets fmt make coreutils dylibbundler libjpeg libmagic nlohmann-json cli11 boost glfw3 md4c ninja python freetype2 mbedtls
69+ brew install sqlite pkg-config libusb protobuf wxwidgets fmt make coreutils dylibbundler libjpeg libmagic nlohmann-json cli11 boost glfw3 md4c ninja python freetype2 mbedtls@3
70+ brew link mbedtls@3
7071 brew upgrade
7172 - name : make
7273 run : gmake -C fluxengine
Original file line number Diff line number Diff line change 44from glob import glob
55import sys
66
7- archs = [ f for f in glob ("*" , root_dir = " arch" ) if isfile ( f"arch/ { f } / { f } .proto" )]
7+ archs = { basename ( dirname ( f )) for f in glob ("arch/*/* .proto" )}
88
99ps = []
1010pls = []
Original file line number Diff line number Diff line change 11from build .c import cxxlibrary
2- from glob import glob
2+ from build . utils import glob
33
44cxxlibrary (
55 name = "lexy" ,
66 srcs = [],
77 hdrs = {
88 h : f"./include/{ h } "
9- for h in glob ("**/*.hpp" , root_dir = "dep/lexy/include" , recursive = True )
9+ for h in glob (
10+ ["**/*.hpp" ], dir = "dep/lexy/include" , relative_to = "dep/lexy/include"
11+ )
1012 },
1113)
Original file line number Diff line number Diff line change 11from build .ab import simplerule , simplerule
2- from build .utils import objectify
2+ from build .utils import objectify , glob
33from build .c import clibrary
44from build .zip import zip
5- from glob import glob
65from os .path import *
76import config
87
3130 label = "ICONSET" ,
3231 )
3332
34- template_files = [
35- f
36- for f in glob ("**" , recursive = True , root_dir = "extras/FluxEngine.app.template" )
37- if isfile (join ("extras/FluxEngine.app.template" , f ))
38- ]
3933 zip (
4034 name = "fluxengine_template" ,
4135 items = {
4236 join ("FluxEngine.app" , k ): join ("extras/FluxEngine.app.template" , k )
43- for k in template_files
37+ for k in glob (
38+ dir = "extras/FluxEngine.app.template" ,
39+ relative_to = "extras/FluxEngine.app.template" ,
40+ )
4441 },
4542 )
4643
You can’t perform that action at this time.
0 commit comments