xmake build --files=src/main.c <target>
xmake build --files='src/*.c' <target>
xmake build --files 'src/**.c|excluded_file.c;xxx/file1.c;yyy/file2.c' <target>
xmake build --files='src/file1.c;src/file2.c'
xmake build --files='src/file1.c:src/file2.c'
Is your feature request related to a problem? Please describe.
see #257 (comment)
Describe the solution you'd like
Path list (windows)
xmake build --files='src/file1.c;src/file2.c'Path list (unix/linux)
xmake build --files='src/file1.c:src/file2.c'