Skip to content

Commit

Permalink
Add .cc to PBXSourcesBuildPhase (#219)
Browse files Browse the repository at this point in the history
Some C++ projects use .cc for source files instead of .cpp.
  • Loading branch information
comex authored Sep 19, 2020
1 parent 5503961 commit eb9b73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/xcake/path_classifier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class PathClassifier
EXTENSION_MAPPINGS = {
PBXFrameworksBuildPhase: %w(.a .dylib .so .framework).freeze,
PBXHeadersBuildPhase: %w(.h .hpp).freeze,
PBXSourcesBuildPhase: %w(.c .m .mm .cpp .swift .xcdatamodeld .java).freeze,
PBXSourcesBuildPhase: %w(.c .m .mm .cpp .cc .swift .xcdatamodeld .java).freeze,
PBXResourcesBuildPhase: %w(.xcassets).freeze
}.freeze

Expand Down

0 comments on commit eb9b73b

Please sign in to comment.