Skip to content

Commit

Permalink
Parse .xmake.cfg files as TOML
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Jan 23, 2025
1 parent eb24b12 commit d10d0ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public Stream<SourceFile> parse(@Language("toml") String... sources) {

@Override
public boolean accept(Path path) {
return path.toString().endsWith(".toml");
return path.toString().endsWith(".toml") || path.endsWith(".xmake.cfg");
}

@Override
Expand Down

0 comments on commit d10d0ec

Please sign in to comment.